:root {
  --gold: #c9a84c;
  --gold-light: #f0c96a;
  --gold-dark: #8a6520;
  --gold-dim: #7a5a20;
  --bg-deep: #050408;
  --bg-dark: #0a090f;
  --bg-mid: #100e18;
  --bg-card: #13101c;
  --red: #8b1a1a;
  --red-bright: #d42c2c;
  --blue-accent: #3a5a9a;
  --text-main: #d4c4a0;
  --text-dim: #7a6a50;
  --border: rgba(201,168,76,0.18);
  --border-bright: rgba(201,168,76,0.45);
}

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

body {
  font-family: 'IM Fell English', Georgia, serif;
  background: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── CANVAS PARTICLES ─── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(5,4,8,0.97) 0%, rgba(5,4,8,0.7) 100%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.28rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .l2-tag {
  background: linear-gradient(135deg, var(--red), #5a0a0a);
  color: #ff8080;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  padding: 2px 8px;
  border-radius: 3px;
  border: 1px solid rgba(212,44,44,0.4);
  letter-spacing: 3px;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.84rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, #6a1010, #3a0808);
  border: 1px solid rgba(212,44,44,0.5);
  color: #ff9999 !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: 'Cinzel', serif !important;
  font-size: 0.82rem !important;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #8a1818, #5a1010) !important;
  color: #ffcccc !important;
  border-color: rgba(212,44,44,0.8) !important;
}

/* ─── DISCONNECT BANNER ─── */
#dc-banner {
  background: linear-gradient(135deg, rgba(80,10,10,0.95), rgba(30,5,5,0.95));
  border-bottom: 1px solid rgba(212,44,44,0.3);
  padding: 12px 34px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 0.84rem;
  letter-spacing: 1.5px;
  color: #ff8888;
}
#dc-banner strong { color: var(--gold-light); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 140px 24px 100px;
  overflow: hidden;
}
.hero-sigil {
  width: 148px;
  height: 148px;
  margin-bottom: 48px;
  opacity: 0.9;
  animation: sigilPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}
@keyframes sigilPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.04); opacity: 1; }
}
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.94rem;
  letter-spacing: 5px;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red-bright));
}
.hero-eyebrow::after {
  background: linear-gradient(to left, transparent, var(--red-bright));
}
h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold-light);
  text-shadow: 0 0 60px rgba(201,168,76,0.35), 0 4px 30px rgba(0,0,0,0.8);
  margin-bottom: 8px;
  letter-spacing: 2px;
}
h1 .brand-l2 {
  color: #ff6060;
  text-shadow: 0 0 40px rgba(212,44,44,0.5);
}
.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 1.22rem;
  letter-spacing: 4px;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 34px;
}
.hero-divider {
  width: min(460px, 90vw);
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(to right, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  position: relative;
}
.hero-divider::before {
  content: '⬧';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 10px;
  background: var(--bg-deep);
  padding: 0 8px;
}
.hero-desc {
  max-width: 820px;
  font-size: 1.28rem;
  line-height: 1.85;
  color: rgba(212,196,160,0.75);
  margin-bottom: 40px;
  font-style: italic;
}
.hero-desc strong {
  color: var(--gold-light);
  font-style: normal;
}
.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn-red {
  background: linear-gradient(135deg, #8b1a1a, #5a0a0a);
  border: 1px solid rgba(212,44,44,0.6);
  color: #ffaaaa;
  padding: 17px 42px;
  font-family: 'Cinzel', serif;
  font-size: 0.94rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 24px rgba(139,26,26,0.4), inset 0 1px 0 rgba(255,100,100,0.1);
}
.btn-red:hover {
  background: linear-gradient(135deg, #aa2020, #780f0f);
  color: #ffcccc;
  border-color: rgba(212,44,44,0.9);
  box-shadow: 0 6px 32px rgba(212,44,44,0.5);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-bright);
  color: var(--gold);
  padding: 17px 34px;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  background: rgba(201,168,76,0.07);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ─── RUNE RINGS ─── */
.rune-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06);
  animation: rotate linear infinite;
  pointer-events: none;
}
.rune-ring:nth-child(1) { width: 500px; height: 500px; animation-duration: 60s; }
.rune-ring:nth-child(2) { width: 700px; height: 700px; animation-duration: 90s; animation-direction: reverse; border-color: rgba(139,26,26,0.05); }
.rune-ring:nth-child(3) { width: 900px; height: 900px; animation-duration: 130s; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ─── SECTIONS ─── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 72px; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 5px;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(201,168,76,0.25);
}
.section-divider {
  width: 260px;
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
}

/* ─── DISCONNECT SECTION ─── */
#disconnect {
  background: linear-gradient(180deg, rgba(60,8,8,0.15) 0%, transparent 100%);
  border-top: 1px solid rgba(212,44,44,0.12);
  border-bottom: 1px solid rgba(212,44,44,0.12);
}
.dc-box {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(80,10,10,0.25), rgba(20,5,5,0.4));
  border: 1px solid rgba(212,44,44,0.2);
  border-radius: 14px;
  padding: 64px 52px;
  position: relative;
  overflow: hidden;
}
.dc-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(139,26,26,0.12) 0%, transparent 60%);
}
.dc-icon { font-size: 4rem; margin-bottom: 20px; display: block; }
.dc-title {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  color: #ff8080;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.dc-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: rgba(212,196,160,0.7);
  margin-bottom: 36px;
  font-style: italic;
}
.dc-text strong { color: var(--gold-light); font-style: normal; }

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.feat-card {
  background: linear-gradient(135deg, rgba(19,16,28,0.9), rgba(10,9,15,0.9));
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover { border-color: var(--border-bright); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.feat-card:hover::before { opacity: 1; }
.feat-icon { font-size: 2.6rem; margin-bottom: 18px; display: block; }
.feat-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.feat-desc { font-size: 1.05rem; line-height: 1.8; color: rgba(212,196,160,0.68); }

/* ─── PRICING ─── */
#pricing { background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03), transparent); }
.price-card {
  max-width: 660px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(25,20,10,0.95), rgba(12,10,6,0.95));
  border: 1px solid var(--border-bright);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201,168,76,0.08), 0 24px 80px rgba(0,0,0,0.5);
}
.price-header {
  background: linear-gradient(135deg, rgba(80,50,5,0.5), rgba(40,25,0,0.5));
  border-bottom: 1px solid var(--border);
  padding: 36px 42px;
  text-align: center;
}
.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), #5a0a0a);
  border: 1px solid rgba(212,44,44,0.5);
  color: #ff9999;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 3px;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.price-name {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.price-tagline { font-size: 1rem; color: var(--text-dim); font-style: italic; }
.price-body { padding: 40px 42px; }
.price-main {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-amount { font-family: 'Cinzel', serif; font-size: 4rem; color: var(--gold-light); line-height: 1; }
.price-period { font-size: 1rem; color: var(--text-dim); margin-top: 6px; }
.price-includes { list-style: none; margin-bottom: 34px; display: flex; flex-direction: column; gap: 14px; }
.price-includes li { display: flex; align-items: flex-start; gap: 14px; font-size: 1.06rem; color: rgba(212,196,160,0.8); }
.pi-check { color: var(--gold); font-size: 0.95rem; flex-shrink: 0; margin-top: 4px; }

/* ─── PERIOD SELECTOR ─── */
.period-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px;
}
.period-btn {
  flex: 1;
  padding: 14px 10px;
  border: none;
  background: transparent;
  color: var(--text-dim);
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
  text-align: center;
}
.period-btn.active {
  background: linear-gradient(135deg, rgba(80,50,5,0.7), rgba(40,25,0,0.7));
  border: 1px solid var(--border-bright);
  color: var(--gold-light);
}
.period-btn .p-price { display: block; font-size: 1rem; color: var(--gold); margin-top: 4px; }
.period-btn.active .p-price { color: var(--gold-light); }
.period-btn .p-save { display: block; font-size: 0.72rem; color: #80cc80; margin-top: 2px; letter-spacing: 0.5px; }

.btn-order {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #8b1a1a, #5a0a0a);
  border: 1px solid rgba(212,44,44,0.6);
  color: #ffbbbb;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(139,26,26,0.4);
}
.btn-order:hover {
  background: linear-gradient(135deg, #aa2020, #780f0f);
  color: #ffdddd;
  box-shadow: 0 6px 36px rgba(212,44,44,0.5);
  transform: translateY(-1px);
}
.price-note { text-align: center; font-size: 0.92rem; color: var(--text-dim); margin-top: 18px; font-style: italic; }
.support-note {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 12px 16px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(201,168,76,0.6);
  margin-top: 16px;
}

/* ─── MODAL ─── */
#modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9000;
  overflow-y: auto;
  padding: 40px 16px;
  backdrop-filter: blur(6px);
}
#modal-overlay.active { display: block; }
#modal-box {
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(160deg, #100e18, #0a090f);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
#modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--red), var(--gold), var(--red), transparent);
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--gold); }
.modal-inner { padding: 40px 36px 32px; }
.modal-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.prog-step {
  flex: 1;
  height: 3px;
  background: rgba(201,168,76,0.12);
  border-radius: 2px;
  transition: background 0.3s;
}
.prog-step.active { background: var(--gold); }
.prog-step.done { background: var(--gold-dim); }
.modal-plan-badge { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.modal-plan-dot {
  width: 8px; height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.modal-plan-name-badge {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.modal-step { display: none; }
.modal-step.active { display: block; }
.modal-step-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 3px;
  color: var(--red-bright);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal-question {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  line-height: 1.4;
}
.modal-input-wrap { position: relative; margin-bottom: 12px; }
.modal-input {
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: 'IM Fell English', serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.modal-input:focus { border-color: var(--border-bright); }
.modal-input::placeholder { color: var(--text-dim); }
.autocomplete-list {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #100e18;
  border: 1px solid var(--border-bright);
  border-top: none;
  border-radius: 0 0 5px 5px;
  z-index: 10;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.autocomplete-list.show { display: block; }
.autocomplete-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
  color: var(--text-main);
}
.autocomplete-item:hover, .autocomplete-item.hl { background: rgba(201,168,76,0.08); color: var(--gold); }
.speed-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.opt-btn {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: rgba(0,0,0,0.25);
  color: var(--text-dim);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.opt-btn:hover { border-color: var(--border-bright); color: var(--gold); background: rgba(201,168,76,0.05); }
.opt-btn.selected { border-color: var(--red-bright); color: #ff9999; background: rgba(139,26,26,0.15); }
.modal-period-grid { display: flex; flex-direction: column; gap: 10px; }
.modal-period-opt {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(0,0,0,0.25);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-period-opt:hover { border-color: var(--border-bright); }
.modal-period-opt.selected { border-color: var(--red-bright); background: rgba(139,26,26,0.12); }
.modal-period-opt .mpo-label { font-family: 'Cinzel', serif; font-size: 0.82rem; color: var(--gold); letter-spacing: 1px; }
.modal-period-opt .mpo-price { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--gold-light); }
.modal-period-opt .mpo-note { font-size: 0.72rem; color: #80cc80; font-style: italic; }
.modal-period-opt.selected .mpo-label { color: #ff9999; }
.modal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.modal-btn-back {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  transition: all 0.2s;
}
.modal-btn-back:hover { border-color: var(--border-bright); color: var(--gold); }
.modal-btn-next {
  background: linear-gradient(135deg, #8b1a1a, #5a0a0a);
  border: 1px solid rgba(212,44,44,0.5);
  color: #ffbbbb;
  padding: 10px 28px;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  transition: all 0.2s;
}
.modal-btn-next:hover { background: linear-gradient(135deg, #aa2020, #780f0f); color: #ffdddd; }

/* ─── SUMMARY ─── */
#modal-summary { display: none; }
#modal-success { display: none; }
.summary-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  font-size: 1rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .sr-key { color: var(--text-dim); }
.summary-row .sr-val { color: var(--text-main); text-align: right; }
.summary-total { display: flex; justify-content: space-between; padding: 12px 0 0; font-family: 'Cinzel', serif; }
.summary-total .st-label { color: var(--gold-dim); font-size: 0.85rem; letter-spacing: 1px; }
.summary-total .st-val { color: var(--gold-light); font-size: 1.2rem; }
.tg-proxy-note {
  background: rgba(139,26,26,0.12);
  border: 1px solid rgba(212,44,44,0.2);
  border-radius: 5px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(212,196,160,0.65);
  line-height: 1.6;
}
.tg-proxy-note a { color: var(--gold); text-decoration: none; }
.tg-proxy-note a:hover { text-decoration: underline; }
.success-inner { text-align: center; padding: 40px 36px; }
.success-icon { font-size: 3rem; display: block; margin-bottom: 16px; }
.success-title { font-family: 'Cinzel Decorative', serif; font-size: 1.4rem; color: var(--gold-light); margin-bottom: 14px; }
.success-sub { font-size: 0.92rem; line-height: 1.8; color: rgba(212,196,160,0.65); font-style: italic; margin-bottom: 24px; }
.success-tg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a1a3a, #0d0d20);
  border: 1px solid rgba(90,130,190,0.4);
  color: #a0b8e0;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  transition: all 0.2s;
  margin-bottom: 12px;
}
.success-tg:hover { background: linear-gradient(135deg, #252550, #151528); border-color: rgba(90,130,190,0.7); }
.success-proxy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2a1a00, #1a0e00);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-dim);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1px;
  transition: all 0.2s;
  margin-top: 6px;
}
.success-proxy-btn:hover { border-color: var(--border-bright); color: var(--gold); }

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 52px 24px 36px;
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { font-family: 'Cinzel Decorative', serif; font-size: 1.2rem; color: var(--gold-dim); margin-bottom: 16px; letter-spacing: 2px; }
.footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 18px; }
.footer-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-proxy-note { font-size: 0.94rem; color: rgba(122,106,80,0.58); font-style: italic; margin-bottom: 14px; }
.footer-proxy-note a { color: rgba(201,168,76,0.4); text-decoration: none; }
.footer-proxy-note a:hover { color: var(--gold); }
.footer-copy { font-size: 0.84rem; color: rgba(122,106,80,0.42); letter-spacing: 1px; }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .modal-inner { padding: 28px 20px 24px; }
  .price-body { padding: 24px 20px; }
  .price-header { padding: 22px 20px; }
  .dc-box { padding: 32px 20px; }
  .period-selector { flex-direction: column; }
  .period-btn { padding: 8px; }
}


@media (min-width: 1440px) {
  h1 { font-size: clamp(4.6rem, 5vw, 6.4rem); }
  .hero-subtitle { font-size: 1.35rem; }
  .hero-desc { font-size: 1.4rem; max-width: 900px; }
  .section-title { font-size: clamp(2.4rem, 2.8vw, 3.4rem); }
  .dc-title { font-size: 2.1rem; }
  .dc-text { font-size: 1.3rem; }
  .feat-title { font-size: 1.08rem; }
  .feat-desc { font-size: 1.12rem; }
  .price-amount { font-size: 4.4rem; }
}

/* === HERO TEXT FIX === */
.hero-text,
.hero h1,
.main-title {
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .hero-text,
    .hero h1,
    .main-title {
        font-size: 0.5em;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero,
    .hero-section {
        padding-bottom: 30px;
    }
}


/* ─── MOBILE BURGER MENU ─── */
.nav-burger {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  background: rgba(0,0,0,0.28);
  border: 1px solid var(--border-bright);
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav.mobile-open .nav-burger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
nav.mobile-open .nav-burger span:nth-child(2) {
  opacity: 0;
}
nav.mobile-open .nav-burger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 700px) {
  .nav-inner {
    position: relative;
    gap: 14px;
  }

  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    background: linear-gradient(160deg, rgba(16,14,24,0.98), rgba(10,9,15,0.98));
    border: 1px solid var(--border-bright);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    z-index: 1100;
  }

  nav.mobile-open .nav-links {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    display: block;
    padding: 16px 20px;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }

  .nav-links li + li a {
    border-top: 1px solid rgba(201,168,76,0.08);
  }
}

/* === MOBILE CTA FIX (кнопка "Заказать") === */
@media (max-width: 700px) {

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

  .nav-cta {
    display: flex !important;
    margin: 0 auto;
  }

  .nav-burger {
    margin-left: auto;
  }

  .nav-cta a,
  .nav-cta button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
