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

* {box-sizing: border-box;margin:0;padding:0}
html,body{height:100%}
.hhrvt-body {
  font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #6B0A23; /* бордовый фон */
  color: #FFD700; 
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ================= CONTAINER ================= */
.hhrvt-container { max-width:1200px;margin:0 auto;padding:0 20px;}

/* ================= HEADER ================= */
.hhrvt-header { 
  position:sticky; top:0; z-index:50; 
  background: linear-gradient(180deg,#6B0A23,#A8324A);
  box-shadow:0 6px 20px rgba(255,215,0,0.2);
}
.hhrvt-header-row { display:flex;align-items:center;justify-content:space-between;padding:14px ; gap:16px; }
.hhrvt-brand { display:flex; align-items:center; gap:12px; color:#FFD700; text-decoration:none; font-weight:800; }
.hhrvt-logo { font-size:26px; transform:translateY(-2px) }
.hhrvt-site-name { font-size:1.25rem; letter-spacing:0.4px }
.hhrvt-site-name span { color:#ffd700 } 

.hhrvt-nav { display:flex; gap:20px; align-items:center; }
.hhrvt-nav a { color: #FFD700; font-weight:700; padding:8px 10px; border-radius:8px; transition:all .18s; text-decoration:none; }
.hhrvt-nav a:hover { background: rgba(255,215,0,0.08); transform:translateY(-2px) }

.hhrvt-burger { display:none; width:42px;height:36px; background:transparent;border:none; cursor:pointer; padding:6px; align-items:center; justify-content:center; }
.hhrvt-burger span { display:block; height:3px; background:#7a5c00; border-radius:3px; margin:5px 0; transition:all .25s }
.hhrvt-burger.active span:nth-child(1){ transform:rotate(45deg) translate(6px,6px); background:#ffd700; }
.hhrvt-burger.active span:nth-child(2){ opacity:0; transform:translateX(-10px) }
.hhrvt-burger.active span:nth-child(3){ transform:rotate(-45deg) translate(6px,-6px); background:#ffd700; }

/* ================= HERO ================= */
#hhrvt-hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(rgba(90,0,0,0.8), rgba(180,0,0,0.8)), url('../img/hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

#hhrvt-hero .hhrvt-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.hhrvt-hero-left {
  flex: 1 1 500px;
  max-width: 600px;
}

.hhrvt-kicker {
  font-size: 18px;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hhrvt-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffd700;
}

.hhrvt-hero-lead {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
}

.hhrvt-hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hhrvt-btn {
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hhrvt-btn-cta {
  background-color: #ffd700;
  color: #5a0000;
}

.hhrvt-btn-cta:hover {
  background-color: #e6c200;
}

.hhrvt-btn-line {
  border: 2px solid #ffd700;
  color: #ffd700;
}

.hhrvt-btn-line:hover {
  background-color: #ffd700;
  color: #5a0000;
}

.hhrvt-hero-right {
  flex: 1 1 400px;
  text-align: center;
}

.hhrvt-hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}




/* Section Head */
.hhrvt-section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.hhrvt-kicker-small {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #ffd700;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hhrvt-section-title {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd700, #ffeb7f, #f7d84a);
  -webkit-background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  
}
.hhrvt-section-sub {
  font-size: 1rem;
  color: #5a3e00;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.2);
}

/* Highlighted Offer Card */
.hhrvt-offers {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

/* Параллакс-фон */
.hhrvt-offers-bg {
  position: absolute;
  inset: 0;
  background: url('../img/offers-bg.jpg') center/cover no-repeat;
  transform: translateY(0);
  z-index: 0;
  filter: brightness(0.4) saturate(1.2);
}

.hhrvt-offers::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(80, 0, 0, 0.6);
  z-index: 1;
}

/* Контент поверх */
.hhrvt-container { position: relative; z-index: 2; }

/* Заголовок */
.hhrvt-section-title { color: #ffd700; font-size: 38px; font-weight: 700; margin: 15px 0; }
.hhrvt-section-sub { color: #fff9e6; font-size: 18px; }

/* === Креативный офер === */
.hhrvt-offer-creative {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
}

/* Логотип с подсветкой */
.hhrvt-offer-logo-layer { position: relative; flex: 1 1 200px; text-align: center; }
.hhrvt-offer-logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255,215,0,0.6), transparent 60%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
}
.hhrvt-offer-logo-layer img {
  position: relative;
  z-index: 1;
  max-width: 180px;
  transition: transform 0.3s ease;
}
.hhrvt-offer-logo-layer img:hover { transform: scale(1.1) rotate(-2deg); }

/* Текстовый слой */
.hhrvt-offer-text-layer { flex: 2 1 400px; }
.hhrvt-offer-title { color: #ffd700; font-size: 26px; margin-bottom: 15px; }
.hhrvt-offer-desc { color: #fff9e6; font-size: 16px; margin-bottom: 20px; }

/* Сетка фич с градиентами */
.hhrvt-offer-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-bottom: 25px;
}
.hhrvt-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 215, 0, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 600;
  color: #ffd700;
  transition: all 0.3s ease;
}
.hhrvt-feature-item i { font-size: 18px; }
.hhrvt-feature-item:hover { background: rgba(255, 215, 0, 0.3); transform: translateY(-5px); }

/* Кнопка */
.hhrvt-btn-gold {
  background: linear-gradient(45deg,#ffd700,#ffcc00);
  color: #800000;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hhrvt-btn-gold:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(255,215,0,0.6); }

/* Legal Text */
.hhrvt-legal {
  display: block;
  margin-top: 10px;
  color: #5a3e00;
  font-size: 0.8rem;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.25);
}
/* ================= ABOUT & FEATURES ================= */
.hhrvt-features-block {
  background: radial-gradient(circle at top left, #fff9e5 0%, #fff1b0 60%, #ffd700 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.hhrvt-about {
  position: relative;
  overflow: hidden;
  padding: 100px 20px;
  background: #1a1200;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.hhrvt-values {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.hhrvt-values-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 25px;
  padding: 40px 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hhrvt-values-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.hhrvt-section-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hhrvt-text-muted {
  color: #fff5d7;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.hhrvt-btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border: 2px solid #ffd700;
  border-radius: 30px;
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hhrvt-btn-gold-outline:hover {
  background: #ffd700;
  color: #1a1a1a;
}

.hhrvt-checklist li {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  list-style: none;
}

.hhrvt-text-gold {
  color: #ffd700;
  margin-right: 10px;
}

.hhrvt-about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}
.hhrvt-about {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}



.hhrvt-about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(80, 0, 0, 0.6);
  z-index: 1;
}

/* Контент выше фона */
.hhrvt-about .hhrvt-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ===== LAYOUT ===== */
.hhrvt-about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.hhrvt-about-row.hhrvt-reverse {
  flex-direction: row-reverse;
}

/* ===== TEXT ===== */
.hhrvt-about-title {
  font-size: 36px;
  color: #ffd700;
  font-weight: 700;
  margin-bottom: 15px;
}

.hhrvt-about-text p {
  color: #fff9e6;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hhrvt-about-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hhrvt-about-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hhrvt-about-features i {
  color: #ffd700;
}

/* ===== GRAPH ===== */
.hhrvt-about-graph-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 25px;
  flex: 1 1 400px;
  justify-items: center;
}

.hhrvt-circle {
  --percent: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: conic-gradient(#ffd700 calc(var(--percent) * 1%), rgba(255,255,255,0.1) 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s ease;
}

.hhrvt-circle::after {
  content: attr(data-value) "%";
  position: absolute;
  font-weight: 700;
  color: #000;
  z-index: 9999;
}

.hhrvt-circle .label {
  position: absolute;
  bottom: -28px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.hhrvt-circle:hover {
  transform: scale(1.05);
}

/* ===== IMAGE ===== */
.hhrvt-about-img {
  flex: 1 1 450px;
  text-align: center;
}

.hhrvt-about-image {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.hhrvt-about-image:hover {
  transform: scale(1.03);
}

.hhrvt-contact {
  position: relative;
  padding: 100px 0;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.hhrvt-contact-parallax {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
  filter: brightness(0.6);
}

.hhrvt-contact-header {
  text-align: center;
  margin-bottom: 80px;
}

.hhrvt-contact-header .hhrvt-kicker-small {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.hhrvt-contact-header h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #fff;
}

.hhrvt-contact-sub {
  color: #f5f5f5;
  font-size: 18px;
}

.hhrvt-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.hhrvt-contact-card {
  background: rgba(128, 0, 32, 0.85); /* бордовый */
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.hhrvt-contact-card-glow::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.4) 0%, transparent 70%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.hhrvt-contact-card:hover {
  transform: translateY(-10px);
}

.hhrvt-contact-card:hover::before {
  opacity: 1;
}

.hhrvt-contact-icon {
  font-size: 40px;
  color: #ffd700;
  margin-bottom: 15px;
}

.hhrvt-contact-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hhrvt-contact-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.hhrvt-btn-gold {
  background: #ffd700;
  color: #800020;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hhrvt-btn-gold:hover {
  background: #ffec8b;
  color: #800020;
}

.hhrvt-btn.hhrvt-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #ffd700, #ffe877);
  color: #1a1200;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hhrvt-btn.hhrvt-btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.8), 0 8px 30px rgba(0,0,0,0.3);
}
.hhrvt-about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffe877, #ffd700);
  margin-top: 8px;
  border-radius: 2px;
  animation: shimmer 2s infinite linear;
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

@keyframes sparkleOverlayFeatures {
  0% { transform: translate(0,0); }
  100% { transform: translate(120px,120px); }
}

/* Section Top */
.hhrvt-features-block-top {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.hhrvt-kicker-small {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hhrvt-features-block-title {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #ffd700, #ffeb7f, #f7d84a);
  -webkit-background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.hhrvt-features-block-sub {
  font-size: 1rem;
  color: #5a3e00;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.2);
}

/* Features Grid */
.hhrvt-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Feature Card */
.hhrvt-feature {
  position: relative;
  background: linear-gradient(145deg, #fff9e5, #fff1b0 60%, #ffd700);
  border-radius: 25px;
  padding: 25px 20px 35px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25), 0 0 60px rgba(255, 223, 0, 0.15) inset;
  transition: all 0.4s ease;
  overflow: hidden;
}
.hhrvt-feature:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.45), 0 0 80px rgba(255, 223, 0, 0.25) inset;
}

/* Glow Effect */
.hhrvt-feature-glow {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 223, 0, 0.15) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
  transition: all 0.4s ease;
}
.hhrvt-feature:hover .hhrvt-feature-glow {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 60%);
  transform: scale(1.1);
}
#hhrvt-features-block {
  position: relative;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  padding: 120px 0;
  overflow: hidden;
}

/* Полупрозрачная затемняющая плёнка */
#hhrvt-features-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(90, 0, 0, 0.85);
  backdrop-filter: blur(3px);
  z-index: 0;
}

/* Верхняя часть */
.hhrvt-features-block-top {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  z-index: 1;
}

.hhrvt-kicker-small {
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hhrvt-features-block-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 20px;
}

.hhrvt-features-block-sub {
  font-size: 18px;
  color: #fff8dc;
  max-width: 700px;
  margin: 0 auto;
}

/* Сетка */
.hhrvt-features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* Карточки */
.hhrvt-feature {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.hhrvt-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hhrvt-feature:hover::before {
  opacity: 1;
}

.hhrvt-feature-icon {
  font-size: 48px;
  color: #ffd700;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.hhrvt-feature:hover .hhrvt-feature-icon {
  transform: scale(1.2) rotate(5deg);
}

.hhrvt-feature h4 {
  font-size: 22px;
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 600;
}

.hhrvt-feature p {
  font-size: 16px;
  color: #fff8dc;
  line-height: 1.6;
}

/* Hover эффект — лёгкое свечение */
.hhrvt-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.25);
  border-color: #ffd700;
}

/* Анимация появления при загрузке */
.hhrvt-feature {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.hhrvt-feature:nth-child(1) { animation-delay: 0.2s; }
.hhrvt-feature:nth-child(2) { animation-delay: 0.4s; }
.hhrvt-feature:nth-child(3) { animation-delay: 0.6s; }
.hhrvt-feature:nth-child(4) { animation-delay: 0.8s; }

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

/* ================= FAQ ================= */
.hhrvt-faq {
  position: relative;
  padding: 100px 0;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow: hidden;
}

/* Параллакс фон */
.hhrvt-faq-bg {
  position: absolute;
  inset: 0;
  transform: translateY(0);
  z-index: 0;
  filter: brightness(0.3) contrast(1.2);
}
.hhrvt-faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(128,0,0,0.6);
  z-index: 1;
}

/* Контент поверх */
.hhrvt-container { position: relative; z-index: 2; }

/* Заголовок */
.hhrvt-section-title { color: #ffd700; font-size: 38px; margin: 15px 0; }
.hhrvt-section-sub { color: #fff9e6; font-size: 16px; }

/* FAQ сетка */
.hhrvt-faq-grid {
  display: grid;
  gap: 25px;
  margin-top: 50px;
}

/* Карточка FAQ */
.hhrvt-faq-card {
  background: rgba(80,0,0,0.7);
  border: 2px solid #ffd700;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hhrvt-faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255,215,0,0.5);
}

/* Вопрос */
.hhrvt-faq-question {
  width: 100%;
  padding: 20px;
  background: rgba(128,0,0,0.8);
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffd700;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}
.hhrvt-faq-question:hover { background: rgba(255,215,0,0.1); }

/* Ответ */
.hhrvt-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: rgba(0,0,0,0.4);
  color: #fff9e6;
  font-size: 15px;
  line-height: 1.6;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

/* Открытый ответ */
.hhrvt-faq-card.active .hhrvt-faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}

/* Иконка */
.hhrvt-faq-icon { transition: transform 0.3s ease; }
.hhrvt-faq-card.active .hhrvt-faq-icon { transform: rotate(45deg); }

/* ================= FOOTER ================= */
.hhrvt-footer-modern {
  position: relative;
  color: #fff;
  background: #4b001f;
  font-family: 'Montserrat', sans-serif;
  padding: 100px 0 50px 0;
  overflow: hidden;
}

.hhrvt-footer-parallax {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  filter: brightness(0.5);
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

/* Top Section */
.hhrvt-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.hhrvt-footer-logo span {
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
}

.hhrvt-footer-desc {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #f5f5f5;
}

.hhrvt-footer-age {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hhrvt-footer-links h4,
.hhrvt-footer-support h4 {
  color: #ffd700;
  margin-bottom: 15px;
}

.hhrvt-footer-links ul,
.hhrvt-footer-logos-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  display: flex
;
    flex-direction: column;
}

.hhrvt-footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.hhrvt-footer-links ul li a:hover {
  color: #ffd700;
}

.hhrvt-footer-logos-carousel a img {
  max-height: 50px;
  transition: transform 0.4s;
}

.hhrvt-footer-logos-carousel a img:hover {
  transform: scale(1.1);
}

/* Middle Features */
.hhrvt-footer-middle {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.hhrvt-footer-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,215,0,0.1);
  padding: 20px 25px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  cursor: default;
}

.hhrvt-footer-feature i {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 10px;
}

.hhrvt-footer-feature span {
  font-weight: 600;
  color: #fff;
}

.hhrvt-footer-feature:hover {
  transform: translateY(-10px);
  background: rgba(255,215,0,0.2);
}

/* Bottom Section */
.hhrvt-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}
/* ================= POPUPS ================= */
.hhrvt-popup { position: fixed; inset: 0; background: rgba(255,215,0,0.12); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; z-index: 999; opacity: 0; pointer-events: none; transition: all 0.3s ease; }
.hhrvt-popup.active { opacity: 1; pointer-events: all; }
.hhrvt-popup-inner { background: #fff9e5; border-radius: 16px; padding: 28px 36px; max-width: 520px; width: 100%; box-shadow: 0 8px 28px rgba(255,215,0,0.25); }
.hhrvt-popup-close { position: absolute; top: 16px; right: 16px; background: transparent; border:none; font-size:1.3rem; color:#5a3e00; cursor:pointer; }

.hhrvt-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}


.hhrvt-parallax-bg {
  position: absolute;
  inset: 0;
  background: url('../img/faq-bg.jpg') center/cover no-repeat;
  transform: translateZ(0);
  z-index: 0;
  opacity: 0.1;
}

.hhrvt-section-head {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hhrvt-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255,215,0,0.4);
  margin: 20px 0;
}



.hhrvt-faq-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hhrvt-faq-item {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hhrvt-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255,215,0,0.25);
}

.hhrvt-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 25px 30px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hhrvt-faq-question i {
  font-size: 1.4rem;
}

.hhrvt-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  font-size: 1rem;
  line-height: 1.8;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.hhrvt-faq-item.active .hhrvt-faq-answer {
  max-height: 800px;
  padding: 20px 30px 30px;
}
.hhrvt-footer-modern {
  background: #6B0A23;
  color: #FFD700;
  font-family: 'Montserrat', sans-serif;
  padding: 60px 20px 30px;
}
.hhrvt-footer-modern a {
  color: #ffd700;
  text-decoration: none;
  transition: 0.3s;
}
.hhrvt-footer-modern a:hover { color: #fff59a; }

/* Top Grid */
.hhrvt-footer-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hhrvt-footer-col { flex: 1 1 250px; }

.hhrvt-footer-logo-link {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  display: inline-block;
  margin-bottom: 15px;
}
.hhrvt-footer-desc { font-size: 0.95rem; margin-bottom: 15px; color: #fff5d7; }
.hhrvt-footer-age { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #ffec99; }
.hhrvt-footer-age img { border-radius: 10px; height: 50px; filter: brightness(1); }

.hhrvt-footer-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 15px; color: #ffd700; }

.hhrvt-footer-links ul { list-style: none; padding: 0; margin: 0; }
.hhrvt-footer-links ul li { margin-bottom: 10px; }

/* Logos */
.hhrvt-footer-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.hhrvt-footer-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #2b2b2b;
  border-radius: 10px;
  transition: 0.3s;
}
.hhrvt-footer-logos a:hover { background: #3b3b3b; }
.hhrvt-footer-logos img { max-height: 50px; filter: brightness(1); }

/* Middle Mini Features */
.hhrvt-footer-middle {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px 0;
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}
.hhrvt-footer-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #fff5d7;
  text-align: center;
}
.hhrvt-footer-feature i {
  font-size: 1.5rem;
  color: #ffd700;
}

/* Bottom */
.hhrvt-footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.hhrvt-age-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.hhrvt-age-popup.active {
  opacity: 1;
  visibility: visible;
}

.hhrvt-popup-backdrop {
  position: absolute;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(3px);
  top: 0; left: 0;
}

/* Card */
.hhrvt-popup-card {
  position: relative;
  background: #6B0A23;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6);
  z-index: 10;
  text-align: center;
  transform: translateY(-50px);
  transition: 0.4s;
}
.hhrvt-age-popup.active .hhrvt-popup-card {
  transform: translateY(0);
}

/* Close Button */
.hhrvt-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.4rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.hhrvt-popup-close:hover { color: #ffd700; }

/* Header & Icon */
.hhrvt-popup-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.hhrvt-popup-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 10px;
}

/* Text */
.hhrvt-popup-text {
  font-size: 1rem;
  color: #fff5d7;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Buttons */
.hhrvt-popup-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.hhrvt-btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.hhrvt-btn-gold {
  background: linear-gradient(45deg, #FFD700,#A8324A);
  color: #6B0A23;
  border: none;
}
.hhrvt-btn-gold:hover {
  background: linear-gradient(45deg,#A8324A,#FFD700);
}
.hhrvt-btn-ghost {
  background: transparent;
  border: 2px solid #ffd700;
  color: #ffd700;
}
.hhrvt-btn-ghost:hover {
  background: #ffd700;
  color: #1c1c1c;
}
.hhrvt-privacy {
  background: radial-gradient(circle at top, #6B0A23 0%, #1f0f0f 90%);
  color: #FFD700;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hhrvt-privacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/gold-pattern.webp") center/cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}


.hhrvt-privacy-intro {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #ffda6b, #fff3c1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hhrvt-privacy-block {
  background: rgba(107,10,35,0.1);
  border: 1px solid rgba(255,215,0,0.2);
  padding: 30px 35px;
  margin-bottom: 25px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.hhrvt-privacy-block:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.1);
}

.hhrvt-privacy-block h2 {
  font-size: 1.4rem;
  color: #ffd77f;
  margin-bottom: 15px;
  text-shadow: 0 0 8px rgba(255, 210, 120, 0.3);
}

.hhrvt-privacy-block p {
  line-height: 1.7;
  color: #f3e7cf;
}

.hhrvt-privacy-list {
  list-style: none;
  margin: 15px 0 20px;
  padding-left: 0;
}

.hhrvt-privacy-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #fff2cc;
}

.hhrvt-privacy-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 1px;
  color: #ffd700;
  font-size: 1rem;
}

.hhrvt-privacy a {
  color: #ffda6b;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted #ffda6b;
  transition: all 0.3s ease;
}

.hhrvt-privacy a:hover {
  color: #ffffff;
  border-bottom-color: transparent;
}

/* Final block */
.hhrvt-privacy-block.final {
  background: linear-gradient(145deg, rgba(255,215,0,0.1), rgba(107,10,35,0.2));
  border-color: rgba(255, 215, 0, 0.3);
  text-align: center;
}
.hhrvt-about-text {
  max-width: 420px;
}


/* ================= RESPONSIVE ================= */


@media(max-width:1024px){
  .hhrvt-footer-top, .hhrvt-footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hhrvt-footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .hhrvt-burger {
    display: flex;
  }
  .hhrvt-about-row {
    flex-direction: column;
    text-align: center;
  }
  .hhrvt-about-row.hhrvt-reverse {
    flex-direction: column;
  }
  .hhrvt-about {
    padding: 60px 0;
  }
  .hhrvt-about-graph-modern {
    grid-template-columns: repeat(2, 1fr);
  }

.hhrvt-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #FFD700;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Когда активно */
.hhrvt-burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hhrvt-burger.active span:nth-child(2) {
  opacity: 0;
}
.hhrvt-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
  .hhrvt-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #6B0A23;
    box-shadow: 0 6px 20px rgba(255,200,0,0.08);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .hhrvt-nav.active {
    max-height: 300px;
    display: flex;
    opacity: 1;
  }

  .hhrvt-nav a {
    display: block;
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255,215,0,0.15);
  }
  .hhrvt-popup-card { padding: 30px 20px; }
  .hhrvt-popup-actions { flex-direction: column; gap: 12px; }
  .hhrvt-row {
    display: block;
  }
  .hhrvt-values-card {
    padding: 30px 20px;
  }
  .hhrvt-section-subtitle {
    font-size: 1.5rem;
  }
  .hhrvt-about-row {
    flex-direction: column;
    gap: 30px;
  }
  .hhrvt-about-row.hhrvt-reverse {
    flex-direction: column;
  }
  .hhrvt-about-graph {
    width: 100%;
  }

  .hhrvt-about-image {
    max-width: 320px;
    margin-bottom: 30px;
  }

  .hhrvt-about-title {
    font-size: 2.2rem;
  }
  .hhrvt-offer-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hhrvt-offer-rating {
    text-align: center;
  }
  .hhrvt-header-row{gap:12px;padding:12px}.hhrvt-nav{display:none}.hhrvt-burger{display:block}}
@media(max-width:768px){
  .hhrvt-contact-title {
    font-size: 2.4rem;
  }

  .hhrvt-contact-sub {
    font-size: 1rem;
  }

  .hhrvt-contact-card {
    padding: 30px 15px;
  }
  .hhrvt-about-title {
    font-size: 1.9rem;
  }

  .hhrvt-about-text p {
    font-size: 1rem;
  }
  .hhrvt-section-title {
    font-size: 2rem;
  }
  .hhrvt-offer-title {
    font-size: 1.6rem;
  }
  .hhrvt-offer-logo {
    width: 120px;
  }
  .hhrvt-hero-ctas {
    flex-direction: column;
    text-align: center;
  }
  .hhrvt-hero-inner{flex-direction:column;gap:36px}.hhrvt-hero-left,.hhrvt-hero-right{flex:unset;width:100%; padding: 0 10px;}.hhrvt-hero-title{font-size:2.2rem}.hhrvt-hero-lead{font-size:1rem}.hhrvt-features-grid{grid-template-columns:1fr}}
@media(max-width:480px){
  .hhrvt-offer-highlight {
    padding: 20px 15px;
  }
  .hhrvt-offer-features {
    flex-direction: column;
    gap: 6px;
  }
  .hhrvt-btn-gold {
    width: 100%;
    justify-content: center;
  }
  .hhrvt-hero-title{font-size:1.9rem}.hhrvt-btn{padding:10px 22px;font-size:.95rem}.hhrvt-feature-card{padding:22px}}
