:root {
  --bg: #0b0b0c;
  --card: #111112;
  --card2: #151516;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --red: #8b1a1a;
  --red-bright: #b82020;
  --text: #f0ede6;
  --muted: #7a7570;
  --border: rgba(201,168,76,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11,11,12,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo span { color: var(--text); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-tg {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #0b0b0c;
  text-decoration: none;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.nav-tg:hover { background: var(--gold-light); transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(11,11,12,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  line-height: 1;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #0b0b0c;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(240,237,230,0.15);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.35);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: #0b0b0c;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-sm:hover {
  background: var(--gold);
  color: #0b0b0c;
  border-color: var(--gold);
}

/* ── SECTIONS ── */
section { padding: 80px 5vw; }

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.section-label::before, .section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1rem auto;
}

/* ── CARDS (popular) ── */
.popular-card {
  background: var(--card2);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.popular-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.popular-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.popular-card-body { padding: 1.2rem 1.4rem; }
.popular-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.popular-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.popular-card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.popular-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price { font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.price-sub { font-size: 0.7rem; color: var(--muted); font-weight: 400; }

.hot-badge {
  display: inline-block;
  background: var(--red-bright);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ── REVIEWS ── */
.review-card {
  background: var(--card2);
  border-radius: 10px;
  padding: 1.4rem;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.2s;
}
.review-card:hover { border-color: rgba(201,168,76,0.15); }
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 0.1em; }
.review-text {
  font-size: 0.85rem;
  color: #c0bdb5;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.review-meta { font-size: 0.72rem; color: var(--muted); }

/* ── STEPS ── */
.steps {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 0;
  position: relative;
}
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s, transform 0.6s;
}
.step.visible { opacity: 1; transform: translateX(0); }
.step:last-child { border-bottom: none; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  background: rgba(201,168,76,0.05);
  transition: background 0.3s, border-color 0.3s;
}
.step:hover .step-num { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.step-title { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.step-desc { font-size: 0.85rem; color: var(--muted); }
.step-icon { font-size: 1.2rem; margin-right: 0.5rem; }

/* ── QUALITY ── */
.quality-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.quality-list { display: flex; flex-direction: column; gap: 1.2rem; }
.quality-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--card2);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: border-color 0.2s;
}
.quality-item:hover { border-color: rgba(201,168,76,0.15); }
.quality-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.quality-item-title { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.quality-item-desc { font-size: 0.8rem; color: var(--muted); }
.quality-right { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.4rem;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.75rem; color: var(--muted); }

/* ── CTA BLOCK ── */
.cta-tg {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--gold);
  color: #0b0b0c;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 0 0 0 rgba(201,168,76,0.4);
  animation: pulse 3s ease-in-out infinite;
}
.cta-tg:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

/* ── FOOTER ── */
footer {
  background: #080809;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 900;
  color: var(--gold); letter-spacing: 0.05em;
}
.footer-logo span { color: var(--muted); }
footer p { font-size: 0.75rem; color: var(--muted); }
footer nav { display: flex; gap: 1.5rem; background: none; position: static; height: auto; padding: 0; border: none; backdrop-filter: none; }
footer nav a { font-size: 0.75rem; color: var(--muted); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
footer nav a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 5vw 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { color: var(--muted); margin-top: 0.8rem; font-size: 1rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); opacity: 0.5; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-tg { display: none; }
  .burger { display: flex; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-right { display: none; }
  footer { flex-direction: column; text-align: center; }
  footer nav { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .page-hero h1 { font-size: 2rem; }
}
