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

/* ==========================================================================
   VOIRA — Ultra-Exclusive High-End 3D Luxury Style sheet
   ========================================================================== */

:root {
  --color-bg-base: #070509;
  --color-bg-elevated: #0f0c13;
  --color-bg-card: rgba(18, 14, 25, 0.55);
  --color-bg-glow: rgba(212, 175, 55, 0.04);
  
  --gold-primary: #d4af37;
  --gold-light: #fcf1ce;
  --gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #fff3cd 0%, #d4af37 50%, #aa7c11 100%);
  --gold-beam-gradient: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
  
  --text-primary: #f7f6f2;
  --text-secondary: #cabaa3;
  --text-muted: #8c8273;
  
  --shadow-3d-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-3d-hard: 0 25px 65px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.1);
  --shadow-gold-neon: 0 0 25px rgba(212, 175, 55, 0.35);
  
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Montserrat', sans-serif;
  
  --transition-ultra: all 0.75s cubic-bezier(0.075, 0.82, 0.165, 1);
  --transition-medium: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   GENERIC ELEVATIONS & BASE
   ========================================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  font-size: 16px;
}

body {
  background-color: var(--color-bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

/* Luxury Premium Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #070509;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #fff3cd 0%, #d4af37 50%, #aa7c11 100%);
  border-radius: 10px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* ==========================================================================
   AMBIENT INTERACTIVE BACKGROUND (GLASS-METEOR ENGINE)
   ========================================================================== */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-nebula {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.14;
  mix-blend-mode: screen;
  will-change: transform;
}

.nebula-gold {
  background: radial-gradient(circle, #d4af37 0%, rgba(7, 5, 9, 0) 70%);
  width: 60vw;
  height: 60vw;
  top: -10vw;
  right: -10vw;
}

.nebula-purple {
  background: radial-gradient(circle, #a155ff 0%, rgba(7, 5, 9, 0) 70%);
  width: 50vw;
  height: 50vw;
  bottom: 10vh;
  left: -15vw;
}

/* ==========================================================================
   ULTRA NAV-SYSTEM WITH FROST GLASSMORPHISM
   ========================================================================== */
.v-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(7, 5, 9, 0.88) 0%, rgba(7, 5, 9, 0.72) 75%, rgba(7, 5, 9, 0) 100%);
  transition: var(--transition-ultra);
}

.v-nav.scrolled {
  padding: 12px 0;
  background: rgba(7, 5, 9, 0.8);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.v-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 5px;
  text-decoration: none;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
  transition: var(--transition-medium);
}

.v-logo:hover {
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  transform: scale(1.03);
}

.v-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.v-link {
  color: var(--text-secondary);
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  transition: var(--transition-medium);
  position: relative;
}

.v-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: var(--transition-medium);
}

.v-link:hover {
  color: var(--gold-light);
}

.v-link:hover::after {
  width: 100%;
  left: 0;
}

.v-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.v-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-medium);
}

.v-burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.v-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.v-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(7, 5, 9, 0.98);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: var(--transition-ultra);
}

.v-mobile-menu.active {
  right: 0;
}

.v-mobile-menu .v-link {
  font-size: 20px;
}

/* ==========================================================================
   ULTRA-PREMIUM 3D CHROME BUTTONS
   ========================================================================== */
.v-btn-gold {
  font-family: var(--font-sans);
  background: var(--gold-gradient);
  color: #000 !important;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(212, 175, 55, 0.25);
  transition: var(--transition-ultra);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.v-btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
}

.v-btn-gold:hover {
  transform: translateY(-5px) scale(1.04) rotateX(10deg);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.5), 0 10px 20px rgba(0, 0, 0, 0.4);
}

.v-btn-gold:hover::before {
  left: 150%;
  transition: left 0.85s ease-in-out;
}

.v-btn-ghost {
  font-family: var(--font-sans);
  background: transparent;
  color: var(--gold-light) !important;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-ultra);
}

.v-btn-ghost:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.95);
  transform: translateY(-3px) rotateX(5deg);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   LUXURY TYPOGRAPHY & HERO SECTION
   ========================================================================== */
.hero-epic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px 0;
  position: relative;
}

.hero-giant-bg {
  position: absolute;
  width: 100%;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 26vw;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.01em;
  color: rgba(212, 175, 55, 0.018);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, rgba(7, 5, 9, 0) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tag-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: inline-flex;
  align-self: flex-start;
  color: var(--gold-light);
}

.hero-preheading {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 84px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 4px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-action-box {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* Dynamic Live Statistics proof card */
.live-counter-panel {
  background: rgba(25, 20, 32, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-3d-soft);
  max-width: 500px;
}

.live-indicator {
  position: relative;
  display: flex;
  width: 14px;
  height: 14px;
}

.live-indicator span {
  position: absolute;
  display: inline-flex;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--gold-primary);
  opacity: 0.75;
}

.live-indicator::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--gold-primary);
  animation: pulseNeon 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseNeon {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.5); opacity: 0; }
}

.live-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.live-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

.live-text-sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Author Mini identity card badge */
.hero-author-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.author-bar-sep {
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
}

.author-label-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.author-label-title {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

/* Giant 3D Holographic Image Screen right */
.hero-right {
  perspective: 2500px;
}

.hologram-screen-3d {
  position: relative;
  width: 100%;
  aspect-ratio: 0.85;
  transform-style: preserve-3d;
  transition: var(--transition-ultra);
  border-radius: 12px;
}

.hologram-screen-3d::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--gold-gradient);
  border-radius: 13px;
  z-index: 0;
  opacity: 0.35;
}

.hologram-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0d0a11;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-3d-hard);
  transform: translateZ(20px);
}

.hologram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
  transition: var(--transition-ultra);
}

.hologram-frame-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.8), inset 0 0 100px rgba(212,175,55,0.15);
  z-index: 3;
  pointer-events: none;
}

.hologram-screen-3d:hover .hologram-img {
  transform: scale(1.04);
}

/* ==========================================================================
   EXCLUSIVE PREMIUM SECTION GENERAL DESIGN
   ========================================================================== */
.p-section {
  padding: 100px 0;
  position: relative;
}

.p-section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.v-subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.v-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.v-section-desc {
  max-width: 650px;
  margin: 16px auto 0 auto;
  font-size: 15px;
  color: var(--text-secondary);
}

/* ==========================================================================
   CLIENT PAIN POINTS 3D MULTI-LATER SYSTEM
   ========================================================================== */
.pains-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pain-cell-3d {
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  padding: 40px 32px;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-3d-soft);
  transform-style: preserve-3d;
  will-change: transform;
}

.pain-cell-3d:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: var(--shadow-3d-hard);
  transform: translateY(-8px) rotateX(4deg) rotateY(4deg) translateZ(15px);
}

.pain-cell-3d > * {
  transform: translateZ(30px);
}

.pain-3d-icon {
  font-size: 42px;
  margin-bottom: 24px;
  display: inline-block;
  text-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.pain-3d-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.pain-3d-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

/* ==========================================================================
   AUTHOR EXPERIENTIAL JOURNEY SPREAD
   ========================================================================== */
.about-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-3d-frame {
  perspective: 2000px;
}

.about-card-3d {
  position: relative;
  border-radius: 12px;
  transform-style: preserve-3d;
  transition: var(--transition-ultra);
}

.about-card-3d::after {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--gold-gradient);
  border-radius: 13px;
  opacity: 0.25;
}

.about-image-wrapper {
  background: #0d0a11;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-3d-hard);
  transform: translateZ(25px);
}

.about-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mystory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.story-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-side-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.story-side-title.dark {
  color: var(--text-muted);
}

.story-side-title.light {
  color: var(--gold-primary);
}

.story-item-line {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.story-mark {
  color: var(--gold-primary);
  font-weight: bold;
}

.story-quote-card {
  background: rgba(212, 175, 55, 0.04);
  border-left: 2px solid var(--gold-primary);
  padding: 16px 24px;
}

.story-quote-card p {
  font-style: italic;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==========================================================================
   SPLIT TENSION SYSTEM (STAY VS TRANSFORM)
   ========================================================================== */
.tension-stage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.tension-wing {
  background: rgba(18, 14, 25, 0.4);
  border: 1px solid rgba(212,175,55,0.08);
  border-radius: 8px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: var(--transition-medium);
}

.tension-wing.left-side:hover {
  background: rgba(30, 10, 20, 0.25);
  border-color: rgba(234, 29, 123, 0.15);
}

.tension-wing.right-side:hover {
  background: rgba(10, 30, 20, 0.25);
  border-color: rgba(212, 175, 55, 0.35);
}

.tension-header-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tension-wing.left-side {
  color: #ff99b8;
}

.tension-wing.right-side {
  color: var(--gold-light);
}

.tension-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tension-li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.tension-li span {
  font-size: 11px;
  margin-top: 4px;
}

/* ==========================================================================
   WHAT YOU WILL ACHIEVE - METICULOUS DECOR
   ========================================================================== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.achieve-box-3d {
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-medium);
  transform-style: preserve-3d;
}

.achieve-box-3d:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-8px) rotateY(6deg);
  box-shadow: var(--shadow-3d-hard);
}

.achieve-num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.achieve-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.achieve-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   STEP-BY-STEP MAP SYSTEM (HOW IT WORKS)
   ========================================================================== */
.steps-linear-road {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin-top: 48px;
}

.steps-linear-road::before {
  content: '';
  position: absolute;
  top: 0;
  left: 36px;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-primary) 0%, rgba(212,175,55,0.05) 100%);
  z-index: 1;
}

.step-node-3d {
  background: var(--color-bg-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  padding: 32px 40px;
  margin-left: 80px;
  position: relative;
  transition: var(--transition-medium);
  transform-style: preserve-3d;
}

.step-node-3d::before {
  content: '';
  position: absolute;
  left: -53px;
  top: 36px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #070509;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-primary);
  z-index: 2;
  transition: var(--transition-medium);
}

.step-node-3d:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateX(10px) translateZ(10px);
}

.step-node-3d:hover::before {
  background: var(--gold-primary);
  transform: scale(1.15);
}

.step-num-badge {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.step-node-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-node-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==========================================================================
   EXCLUSIVE PREMIUM FORMATS (3D GLASS-TIER PANELS)
   ========================================================================== */
.formats-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

/* Дві колонки для пакетів GOLD / PREMIUM */
.formats-tier-grid.formats-two-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.tier-card-3d {
  background: var(--color-bg-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 12px;
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-ultra);
  transform-style: preserve-3d;
  position: relative;
}

.tier-card-3d.popular-tag {
  background: linear-gradient(180deg, rgba(30, 24, 40, 0.6) 0%, rgba(18, 14, 25, 0.65) 100%);
  border-color: rgba(212, 175, 55, 0.4);
}

.tier-ribbon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #000;
  background: var(--gold-gradient);
  padding: 4px 12px;
  border-radius: 50px;
}

.tier-card-3d:hover {
  transform: scale(1.03) translateY(-10px) rotateX(4deg) rotateY(-4deg);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: var(--shadow-3d-hard);
}

.tier-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tier-header-status {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
}

.tier-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tier-time-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 36px 0;
}

.tier-li {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
}

.tier-li span {
  color: var(--gold-primary);
}

.tier-offline-note {
  background: rgba(212,175,55,0.05);
  border-radius: 4px;
  padding: 16px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 16px;
}

.tier-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tier-price-block {
  display: flex;
  flex-direction: column;
}

.tier-price-label {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.tier-price-base {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.tier-price-old {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--text-muted);
}

.tier-price-current {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-light);
}

/* Плашка дедлайну акції */
.v-promo-deadline {
  margin-top: 14px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
}

.v-promo-deadline:empty {
  display: none;
}

.tier-installment {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Specific sub-tiers grid structure under Premium Personal Option */
.sub-personal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.sub-p-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(212,175,55,0.1);
  padding: 16px 20px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition-medium);
}

.sub-p-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212,175,55,0.3);
}

.sub-p-item.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-primary);
}

.sub-p-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-p-title-row h5 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
}

.sub-p-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-primary);
}

.sub-p-oldprice {
  font-size: 11px;
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 6px;
}

.sub-p-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* ==========================================================================
   EXCLUSIVE PREMIUM MULTI-EXPANDER FAQ ACCORDION
   ========================================================================== */
.faq-spread-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card-3d {
  background: var(--color-bg-card);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-card-3d:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-header-btn {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-qt-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  transition: var(--transition-medium);
}

.faq-header-btn:hover .faq-qt-text {
  color: var(--gold-light);
}

.faq-chevron {
  font-size: 14px;
  color: var(--gold-primary);
  transition: var(--transition-medium);
}

.faq-card-3d.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-hidden-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(7, 5, 9, 0.3);
}

.faq-card-3d.open .faq-hidden-panel {
  max-height: 500px;
}

.faq-inner-body {
  padding: 0 32px 28px 32px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   EXCLUSIVE PREMIUM CHROME MODAL SYSTEM
   ========================================================================== */
.epic-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 5, 9, 0.9);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-ultra);
}

.epic-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.epic-modal-box {
  width: 90%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: #0e0a13;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-3d-hard);
  transform: scale(0.9) translateY(40px);
  transition: var(--transition-ultra);
}

.epic-modal-box::-webkit-scrollbar {
  width: 4px;
}
.epic-modal-box::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 4px;
}

.epic-modal-overlay.active .epic-modal-box {
  transform: scale(1) translateY(0);
}

.epic-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-sans);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition-medium);
}

.epic-modal-close:hover {
  color: var(--gold-light);
}

.modal-header-section {
  text-align: center;
  margin-bottom: 32px;
}

.modal-header-section h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.modal-header-section p {
  font-size: 13px;
  color: var(--text-secondary);
}

.epic-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.epic-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 4px;
  padding: 16px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14px;
  transition: var(--transition-medium);
}

.epic-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(212,175,55,0.04);
}

.privacy-protection-info {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.success-screen-inner {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.success-icon-gold {
  font-size: 48px;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.success-screen-inner h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.success-screen-inner p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==========================================================================
   EXCLUSIVE PREMIUM REAL-TIME CHROME PROFILE WIDGET
   ========================================================================== */
.v-profile-widget {
  position: fixed;
  top: auto;
  right: 20px;
  bottom: 20px;
  background: var(--color-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  padding: 8px 24px 8px 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1100;
  cursor: pointer;
  box-shadow: var(--shadow-3d-hard);
  transform: translate3d(0, 0, 0);
  transition: var(--transition-ultra);
}

.v-profile-widget.visible {
  transform: translate3d(0, 0, 0);
}

.v-profile-widget:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translate3d(-4px, -2px, 0) scale(1.04);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.v-p-avatar-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-primary);
}

.v-p-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v-p-right h6 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
}

.v-p-right p {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .v-profile-widget {
    top: auto;
    right: 16px;
    bottom: 16px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    transform: translate3d(0, 0, 0);
  }

  .v-profile-widget .v-p-right {
    display: none;
  }

  .v-profile-widget .v-p-avatar-wrap {
    width: 50px;
    height: 50px;
    margin: 0;
    border: 2px solid var(--gold-primary);
  }

  .v-profile-widget.visible {
    transform: translate3d(0, 0, 0);
  }

  .v-profile-widget:hover {
    transform: translate3d(0, -2px, 0) scale(1.02);
  }
}

@media (max-width: 575px) {
  .v-profile-widget {
    right: 16px;
    bottom: 16px;
    top: auto;
    left: auto;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
}

/* ==========================================================================
   FOOTER CODA
   ========================================================================== */
.v-footer {
  background: #040306;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 80px 0 40px 0;
  position: relative;
  overflow: hidden;
}

.footer-inside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 950;
  letter-spacing: 6px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-credo {
  max-width: 550px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links-row {
  display: flex;
  gap: 28px;
}

.footer-links-row a {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--transition-medium);
}

.footer-links-row a:hover {
  color: var(--gold-primary);
}

.footer-line-breaker {
  width: 100%;
  height: 1px;
  background: rgba(212,175,55,0.08);
}

.footer-copyright {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ==========================================================================
   RESPONSIVE RETUNING
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-heading {
    font-size: 64px;
  }
  .v-title {
    font-size: 38px;
  }
  .pains-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .formats-tier-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .formats-tier-grid.formats-two-cols {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .hologram-screen-3d {
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-right {
    order: 0; /* Спочатку заголовок і суть пропозиції, фото — нижче */
  }
  .tag-label {
    align-self: center;
  }
  .hero-action-box {
    justify-content: center;
  }
  .live-counter-panel {
    margin: 0 auto;
  }
  .about-split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-left {
    max-width: 320px;
    margin: 0 auto;
  }
  .mst-col-wrap {
    grid-template-columns: 1fr;
  }
  .tension-stage-layout {
    grid-template-columns: 1fr;
  }
  .pains-showcase-grid {
    grid-template-columns: 1fr;
  }
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  .v-links {
    display: none;
  }
  .v-burger {
    display: flex;
  }
  .v-title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .container {
    padding: 0 14px;
  }

  .p-section {
    padding: 56px 0;
  }

  .p-section-heading {
    margin-bottom: 32px;
  }

  .v-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .v-section-desc {
    font-size: 13px;
    margin-top: 12px;
  }

  .pain-cell-3d {
    padding: 24px 16px;
    border-radius: 8px;
  }

  .pain-3d-icon {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .pain-3d-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .pain-3d-text {
    font-size: 13px;
    line-height: 1.55;
  }

  .tension-wing {
    padding: 24px 16px;
    gap: 14px;
  }

  .tension-header-text {
    font-size: 20px;
  }

  .tension-li {
    font-size: 13px;
    gap: 10px;
  }

  .achieve-box-3d {
    padding: 24px 16px;
  }

  .achieve-num {
    font-size: 42px;
    margin-bottom: 12px;
  }

  .achieve-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .achieve-desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .tier-card-3d {
    padding: 28px 16px;
    border-radius: 10px;
  }

  .tier-ribbon {
    top: 14px;
    right: 14px;
    font-size: 9px;
    padding: 4px 10px;
  }

  .tier-top {
    gap: 12px;
  }

  .tier-title {
    font-size: 24px;
  }

  .tier-time-sub {
    font-size: 12px;
  }

  .tier-features {
    gap: 10px;
    margin: 20px 0;
  }

  .tier-li {
    font-size: 12.5px;
    gap: 10px;
  }

  .tier-price-current {
    font-size: 30px;
  }

  .tier-installment {
    font-size: 11px;
  }

  .section-cta-wrap {
    margin-top: 32px;
  }
}
