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

:root {
  --cs-bg-deep: #070920;
  --cs-bg-mid: #0d1230;
  --cs-bg-card: #131840;
  --cs-bg-card-alt: #0f1535;
  --cs-gold: #c8a020;
  --cs-gold-light: #e8c040;
  --cs-gold-alpha: rgba(200,160,32,0.12);
  --cs-purple-main: #7020c0;
  --cs-purple-soft: #9648d8;
  --cs-purple-glow: rgba(112,32,192,0.22);
  --cs-teal: #18a8a0;
  --cs-text-bright: #f0e8fc;
  --cs-text-base: #c8bcd8;
  --cs-text-muted: #7888a8;
  --cs-text-meta: #56688a;
  --cs-divider: rgba(200,160,32,0.12);
  --cs-r-xs: 6px;
  --cs-r-sm: 10px;
  --cs-r-md: 18px;
  --cs-r-lg: 28px;
  --cs-r-pill: 100px;
  --cs-shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
  --cs-shadow-md: 0 6px 28px rgba(0,0,0,0.45);
  --cs-shadow-lg: 0 14px 50px rgba(0,0,0,0.55);
  --cs-shadow-glow: 0 0 40px rgba(112,32,192,0.28);
  --cs-tr: 0.3s ease;
  --cs-tr-fast: 0.18s ease;
  --cs-w: 1180px;
  --cs-font-display: 'Cinzel', serif;
  --cs-font-ui: 'Raleway', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--cs-font-ui);
  background: var(--cs-bg-deep);
  color: var(--cs-text-base);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: var(--cs-gold); text-decoration: none; transition: var(--cs-tr-fast); }
a:hover { color: var(--cs-gold-light); }
img { max-width: 100%; height: auto; display: block; }

.cs-wrap { width: 100%; max-width: var(--cs-w); margin: 0 auto; padding: 0 24px; }

.cs-eyebrow {
  display: inline-block;
  font-family: var(--cs-font-display);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cs-gold);
  background: var(--cs-gold-alpha);
  padding: 4px 14px;
  border-radius: var(--cs-r-pill);
  border: 1px solid var(--cs-divider);
  margin-bottom: 14px;
}

.cs-heading {
  font-family: var(--cs-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--cs-text-bright);
  line-height: 1.2;
  margin-bottom: 14px;
}
.cs-heading .hi { color: var(--cs-gold); }

.cs-subtext {
  font-size: 1rem;
  color: var(--cs-text-muted);
  line-height: 1.65;
}

.cs-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--cs-gold), var(--cs-gold-light));
  color: #07091c;
  font-family: var(--cs-font-ui);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 30px;
  border-radius: var(--cs-r-pill);
  border: none;
  cursor: pointer;
  transition: var(--cs-tr);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}
.cs-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,160,32,0.38); color: #07091c; }

.cs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cs-gold);
  font-family: var(--cs-font-ui);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 26px;
  border-radius: var(--cs-r-pill);
  border: 1px solid rgba(200,160,32,0.5);
  cursor: pointer;
  transition: var(--cs-tr);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.cs-btn-ghost:hover { background: var(--cs-gold-alpha); color: var(--cs-gold-light); }

.cs-site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,9,32,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--cs-divider);
  transition: var(--cs-tr);
}
.cs-site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.5); }

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

.cs-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cs-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cs-text-bright);
  text-decoration: none;
}
.cs-logo-gem {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cs-purple-main), var(--cs-gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cs-logo-link .accent { color: var(--cs-gold); }

.cs-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.cs-nav-menu a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cs-text-base);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--cs-tr-fast);
  text-decoration: none;
}
.cs-nav-menu a:hover { color: var(--cs-gold); }
.cs-nav-menu .cs-nav-accent {
  background: linear-gradient(135deg, var(--cs-purple-main), var(--cs-purple-soft));
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--cs-r-pill);
  font-weight: 600 !important;
}
.cs-nav-menu .cs-nav-accent:hover { box-shadow: 0 4px 16px var(--cs-purple-glow); transform: translateY(-1px); }

.cs-nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.cs-nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cs-text-bright);
  border-radius: 2px;
  transition: var(--cs-tr);
}

.cs-nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(13,18,48,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cs-divider);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 2px;
}
.cs-nav-mobile.open { display: flex; }
.cs-nav-mobile a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cs-text-base);
  padding: 13px 0;
  border-bottom: 1px solid var(--cs-divider);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--cs-tr-fast);
}
.cs-nav-mobile a:hover { color: var(--cs-gold); padding-left: 6px; }
.cs-nav-mobile a:last-child { border-bottom: none; }

.cs-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cs-bg-deep) 0%, #0a0c28 40%, #10082e 100%);
}
.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 38%, rgba(112,32,192,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 18% 75%, rgba(24,168,160,0.1) 0%, transparent 45%);
  pointer-events: none;
}
.cs-hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cs-hero-stars span {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(200,160,32,0.5);
  border-radius: 50%;
  animation: cs-twinkle 3s infinite alternate;
}
@keyframes cs-twinkle {
  from { opacity: 0.2; transform: scale(0.8); }
  to { opacity: 0.9; transform: scale(1.2); }
}

.cs-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cs-hero-eyebrow {
  font-family: var(--cs-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cs-teal);
  display: block;
  margin-bottom: 18px;
}
.cs-hero-title {
  font-family: var(--cs-font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--cs-text-bright);
  line-height: 1.12;
  margin-bottom: 20px;
}
.cs-hero-title .gold-line { color: var(--cs-gold); display: block; }
.cs-hero-desc {
  font-size: 1.05rem;
  color: var(--cs-text-muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.cs-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cs-hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.cs-trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--cs-text-muted);
}
.cs-trust-chip .stars-gold { color: var(--cs-gold); letter-spacing: -1px; font-size: 0.85rem; }

.cs-wheel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cs-wheel-container {
  position: relative;
  width: 380px; height: 380px;
}
.cs-wheel-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(200,160,32,0.15);
  animation: cs-orbit-spin 60s linear infinite;
}
.cs-wheel-orbit-inner {
  inset: 36px;
  border-color: rgba(150,72,216,0.18);
  animation-duration: 44s;
  animation-direction: reverse;
}
.cs-wheel-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112,32,192,0.45), rgba(7,9,32,0.9));
  border: 1px solid rgba(200,160,32,0.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
.cs-sign-node {
  position: absolute;
  width: 38px; height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--cs-gold);
}
.cs-sign-node .cs-sn-label {
  font-size: 0.42rem;
  font-family: var(--cs-font-display);
  letter-spacing: 0.04em;
  color: var(--cs-text-muted);
  margin-top: 2px;
}
@keyframes cs-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cs-disclaimer-strip {
  background: linear-gradient(90deg, rgba(112,32,192,0.1), rgba(200,160,32,0.06));
  border-top: 1px solid var(--cs-divider);
  border-bottom: 1px solid var(--cs-divider);
  padding: 16px 0;
}
.cs-disclaimer-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cs-disclaimer-ico { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.cs-disclaimer-copy { font-size: 0.8rem; color: var(--cs-text-muted); line-height: 1.5; }
.cs-disclaimer-copy strong { color: var(--cs-gold); font-weight: 600; }

.cs-features-section {
  padding: 92px 0;
  background: var(--cs-bg-mid);
}
.cs-section-head { text-align: center; margin-bottom: 52px; }
.cs-section-head .cs-subtext { max-width: 520px; margin: 0 auto; }

.cs-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cs-feat-tile {
  background: var(--cs-bg-card);
  border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-md);
  padding: 30px 22px;
  transition: var(--cs-tr);
  position: relative;
  overflow: hidden;
}
.cs-feat-tile::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cs-purple-main), var(--cs-gold));
  opacity: 0;
  transition: var(--cs-tr);
}
.cs-feat-tile:hover { transform: translateY(-5px); box-shadow: var(--cs-shadow-md); border-color: rgba(200,160,32,0.28); }
.cs-feat-tile:hover::after { opacity: 1; }
.cs-feat-ico { font-size: 2rem; margin-bottom: 18px; display: block; }
.cs-feat-name {
  font-family: var(--cs-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cs-text-bright);
  margin-bottom: 9px;
}
.cs-feat-body { font-size: 0.86rem; color: var(--cs-text-muted); line-height: 1.6; }

.cs-reviews-section {
  padding: 92px 0;
  background: var(--cs-bg-deep);
}
.cs-review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.cs-review-tile {
  background: var(--cs-bg-card);
  border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-md);
  padding: 30px;
  transition: var(--cs-tr);
}
.cs-review-tile:hover { border-color: rgba(200,160,32,0.25); box-shadow: var(--cs-shadow-sm); }
.cs-rv-stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--cs-gold); font-size: 0.9rem; }
.cs-rv-text { font-size: 0.92rem; color: var(--cs-text-base); line-height: 1.7; font-style: italic; margin-bottom: 22px; }
.cs-rv-author { display: flex; align-items: center; gap: 12px; }
.cs-rv-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cs-purple-main), var(--cs-teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cs-font-display);
  font-size: 0.95rem; font-weight: 700;
  color: #fff; flex-shrink: 0;
}
.cs-rv-name {
  font-family: var(--cs-font-display);
  font-size: 0.88rem; font-weight: 600;
  color: var(--cs-text-bright);
}
.cs-rv-location { font-size: 0.76rem; color: var(--cs-text-muted); margin-top: 2px; }
.cs-rv-verified {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--cs-teal);
  background: rgba(24,168,160,0.1);
  border: 1px solid rgba(24,168,160,0.2);
  padding: 3px 9px;
  border-radius: var(--cs-r-pill);
}

/* ── PLANS ── */
.cs-plans-section {
  padding: 92px 0;
  background: var(--cs-bg-mid);
}
.cs-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.cs-plan-box {
  background: var(--cs-bg-card);
  border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-lg);
  padding: 34px 26px;
  transition: var(--cs-tr);
  position: relative;
}
.cs-plan-box.cs-plan-featured {
  background: linear-gradient(160deg, #1a1060 0%, #0f1540 100%);
  border-color: rgba(200,160,32,0.45);
  transform: scale(1.04);
  box-shadow: var(--cs-shadow-glow), var(--cs-shadow-md);
}
.cs-plan-ribbon {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cs-gold), var(--cs-gold-light));
  color: #07091c;
  font-size: 0.68rem; font-weight: 700;
  font-family: var(--cs-font-display);
  padding: 4px 18px;
  border-radius: var(--cs-r-pill);
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
.cs-plan-tier-label {
  font-family: var(--cs-font-display);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cs-gold); margin-bottom: 8px;
}
.cs-plan-title {
  font-family: var(--cs-font-display);
  font-size: 1.45rem; font-weight: 700;
  color: var(--cs-text-bright); margin-bottom: 8px;
}
.cs-plan-note {
  font-size: 0.84rem; color: var(--cs-text-muted);
  margin-bottom: 26px; line-height: 1.5;
}
.cs-plan-sep { height: 1px; background: var(--cs-divider); margin: 22px 0; }
.cs-plan-benefits {
  list-style: none; margin-bottom: 30px;
  display: flex; flex-direction: column; gap: 9px;
}
.cs-plan-benefits li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.86rem; color: var(--cs-text-base); line-height: 1.5;
}
.cs-plan-benefits li::before { content: '✦'; color: var(--cs-gold); font-size: 0.6rem; flex-shrink: 0; margin-top: 4px; }
.cs-plan-action {
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--cs-r-pill);
  font-family: var(--cs-font-ui); font-size: 0.88rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; transition: var(--cs-tr); border: none;
}
.cs-plan-box:not(.cs-plan-featured) .cs-plan-action {
  background: var(--cs-gold-alpha); color: var(--cs-gold);
  border: 1px solid rgba(200,160,32,0.4);
}
.cs-plan-box:not(.cs-plan-featured) .cs-plan-action:hover { background: var(--cs-gold); color: #07091c; }
.cs-plan-featured .cs-plan-action {
  background: linear-gradient(135deg, var(--cs-gold), var(--cs-gold-light));
  color: #07091c;
}
.cs-plan-featured .cs-plan-action:hover { box-shadow: 0 6px 20px rgba(200,160,32,0.42); transform: translateY(-2px); }

.cs-cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0830 0%, #180b50 50%, #0a1030 100%);
  position: relative; overflow: hidden;
  text-align: center;
}
.cs-cta-band::before {
  content: '✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦';
  position: absolute; top: 18px; left: 0; right: 0;
  text-align: center; font-size: 0.75rem;
  letter-spacing: 0.9em;
  color: rgba(200,160,32,0.12);
  pointer-events: none;
}
.cs-cta-band .cs-subtext { max-width: 520px; margin: 0 auto 32px; }
.cs-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.cs-faq-section {
  padding: 92px 0;
  background: var(--cs-bg-deep);
}
.cs-faq-stack {
  max-width: 740px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 11px;
}
.cs-faq-entry {
  background: var(--cs-bg-card);
  border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-md);
  overflow: hidden;
  transition: var(--cs-tr);
}
.cs-faq-entry.open { border-color: rgba(200,160,32,0.3); }
.cs-faq-toggle {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; cursor: pointer; text-align: left; gap: 14px;
}
.cs-faq-q {
  font-family: var(--cs-font-display);
  font-size: 0.92rem; font-weight: 600;
  color: var(--cs-text-bright); line-height: 1.4;
}
.cs-faq-arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cs-gold-alpha);
  border: 1px solid var(--cs-divider);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--cs-tr);
  color: var(--cs-gold); font-size: 0.85rem;
}
.cs-faq-entry.open .cs-faq-arrow { transform: rotate(180deg); background: var(--cs-gold); color: #07091c; }
.cs-faq-answer {
  display: none;
  padding: 0 22px 20px;
}
.cs-faq-answer p { font-size: 0.88rem; color: var(--cs-text-muted); line-height: 1.72; }
.cs-faq-answer a { color: var(--cs-gold); text-decoration: underline; text-underline-offset: 3px; }

/* ── CONTACT FORM ── */
.cs-contact-section {
  padding: 92px 0;
  background: var(--cs-bg-mid);
}
.cs-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.cs-contact-copy h2 {
  font-family: var(--cs-font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--cs-text-bright); margin-bottom: 14px;
}
.cs-contact-copy p { font-size: 0.92rem; color: var(--cs-text-muted); margin-bottom: 22px; line-height: 1.65; }
.cs-contact-note {
  background: var(--cs-gold-alpha);
  border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-sm);
  padding: 15px 18px;
  font-size: 0.8rem; color: var(--cs-text-muted); line-height: 1.6;
}
.cs-contact-note strong { color: var(--cs-gold); display: block; margin-bottom: 4px; }

.cs-form-shell {
  background: var(--cs-bg-card);
  border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-lg);
  padding: 36px;
}
.cs-field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cs-field { margin-bottom: 18px; }
.cs-field label {
  display: block;
  font-size: 0.76rem; font-weight: 600;
  color: var(--cs-text-muted);
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 7px;
}
.cs-field input, .cs-field textarea, .cs-field select {
  width: 100%;
  background: var(--cs-bg-mid);
  border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-sm);
  padding: 12px 15px;
  font-family: var(--cs-font-ui);
  font-size: 0.9rem; color: var(--cs-text-bright);
  transition: var(--cs-tr-fast); outline: none;
}
.cs-field input::placeholder, .cs-field textarea::placeholder { color: var(--cs-text-meta); }
.cs-field input:focus, .cs-field textarea:focus, .cs-field select:focus {
  border-color: var(--cs-gold);
  box-shadow: 0 0 0 3px var(--cs-gold-alpha);
}
.cs-field textarea { resize: vertical; min-height: 115px; }
.cs-form-send {
  width: 100%;
  background: linear-gradient(135deg, var(--cs-gold), var(--cs-gold-light));
  color: #07091c;
  font-family: var(--cs-font-ui); font-size: 0.9rem; font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--cs-r-pill); border: none; cursor: pointer;
  transition: var(--cs-tr); text-transform: uppercase; letter-spacing: 0.05em;
}
.cs-form-send:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,160,32,0.38); }
.cs-form-sent {
  display: none; text-align: center; padding: 36px 20px;
}
.cs-form-sent .ok-icon { font-size: 2.8rem; margin-bottom: 14px; }
.cs-form-sent h3 { font-family: var(--cs-font-display); font-size: 1.2rem; color: var(--cs-text-bright); margin-bottom: 8px; }
.cs-form-sent p { font-size: 0.88rem; color: var(--cs-text-muted); }

.cs-site-footer {
  background: #050717;
  padding: 60px 0 0;
  border-top: 1px solid var(--cs-divider);
}
.cs-footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--cs-divider);
}
.cs-footer-brand .cs-logo-link { margin-bottom: 14px; display: inline-flex; }
.cs-footer-brand p { font-size: 0.83rem; color: var(--cs-text-muted); line-height: 1.6; margin-bottom: 18px; }
.cs-socials { display: flex; gap: 9px; }
.cs-social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cs-bg-card);
  border: 1px solid var(--cs-divider);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--cs-text-muted);
  text-decoration: none; transition: var(--cs-tr-fast);
}
.cs-social-link:hover { border-color: var(--cs-gold); color: var(--cs-gold); }
.cs-footer-col h4 {
  font-family: var(--cs-font-display);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cs-gold); margin-bottom: 16px;
}
.cs-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cs-footer-col ul a {
  font-size: 0.84rem; color: var(--cs-text-muted);
  text-decoration: none; transition: var(--cs-tr-fast);
  display: block;
}
.cs-footer-col ul a:hover { color: var(--cs-gold); padding-left: 3px; }
.cs-footer-base {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 14px; flex-wrap: wrap;
}
.cs-footer-copy { font-size: 0.76rem; color: var(--cs-text-meta); line-height: 1.5; }
.cs-footer-copy a { color: var(--cs-text-muted); }
.cs-footer-copy a:hover { color: var(--cs-gold); }
.cs-footer-disc { font-size: 0.74rem; color: var(--cs-text-meta); max-width: 440px; line-height: 1.5; text-align: right; }

.cs-gdpr-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(13,18,48,0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--cs-divider);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cs-gdpr-bar.visible { transform: translateY(0); }
.cs-gdpr-inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cs-gdpr-text { flex: 1; font-size: 0.82rem; color: var(--cs-text-muted); min-width: 180px; }
.cs-gdpr-text a { color: var(--cs-gold); }
.cs-gdpr-btns { display: flex; gap: 9px; flex-shrink: 0; }
.cs-gdpr-ok {
  background: var(--cs-gold); color: #07091c;
  font-family: var(--cs-font-ui); font-size: 0.8rem; font-weight: 700;
  padding: 9px 22px; border-radius: var(--cs-r-pill); border: none;
  cursor: pointer; transition: var(--cs-tr-fast);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.cs-gdpr-ok:hover { background: var(--cs-gold-light); }
.cs-gdpr-no {
  background: transparent; color: var(--cs-text-muted);
  font-family: var(--cs-font-ui); font-size: 0.8rem; font-weight: 500;
  padding: 9px 18px; border-radius: var(--cs-r-pill);
  border: 1px solid var(--cs-divider); cursor: pointer; transition: var(--cs-tr-fast);
}
.cs-gdpr-no:hover { border-color: var(--cs-text-muted); color: var(--cs-text-base); }

.cs-page-hero {
  padding: 120px 0 56px;
  background: linear-gradient(160deg, var(--cs-bg-deep), var(--cs-bg-mid));
  text-align: center; position: relative; overflow: hidden;
}
.cs-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(112,32,192,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cs-breadcrumb { font-size: 0.76rem; color: var(--cs-text-muted); margin-bottom: 14px; position: relative; z-index: 1; }
.cs-breadcrumb a { color: var(--cs-text-muted); text-decoration: none; }
.cs-breadcrumb a:hover { color: var(--cs-gold); }
.cs-breadcrumb span { margin: 0 6px; color: var(--cs-text-meta); }
.cs-page-hero h1 {
  font-family: var(--cs-font-display);
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900;
  color: var(--cs-text-bright); margin-bottom: 12px;
  position: relative; z-index: 1;
}
.cs-page-hero p { font-size: 1rem; color: var(--cs-text-muted); max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }
.cs-updated-tag {
  display: inline-block;
  background: var(--cs-gold-alpha); border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-pill); padding: 4px 13px;
  font-size: 0.72rem; color: var(--cs-gold); margin-top: 12px;
  position: relative; z-index: 1;
}

.cs-prose-wrap { padding: 56px 0 88px; }
.cs-prose { max-width: 820px; margin: 0 auto; }
.cs-prose h2 {
  font-family: var(--cs-font-display); font-size: 1.35rem; font-weight: 700;
  color: var(--cs-text-bright); margin: 38px 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--cs-divider);
}
.cs-prose h3 {
  font-family: var(--cs-font-display); font-size: 1.05rem; font-weight: 600;
  color: var(--cs-gold); margin: 24px 0 10px;
}
.cs-prose p { font-size: 0.92rem; color: var(--cs-text-muted); line-height: 1.75; margin-bottom: 14px; }
.cs-prose ul, .cs-prose ol { margin: 12px 0 18px 22px; }
.cs-prose li { font-size: 0.9rem; color: var(--cs-text-muted); line-height: 1.65; margin-bottom: 7px; }
.cs-prose a { color: var(--cs-gold); text-decoration: underline; text-underline-offset: 3px; }
.cs-prose strong { color: var(--cs-text-base); }
.cs-prose table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.88rem; }
.cs-prose th { background: var(--cs-bg-card); color: var(--cs-gold); font-family: var(--cs-font-display); padding: 10px 14px; border: 1px solid var(--cs-divider); text-align: left; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.cs-prose td { padding: 10px 14px; border: 1px solid var(--cs-divider); color: var(--cs-text-muted); }
.cs-prose tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.cs-info-pair {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin: 26px 0;
}
.cs-info-block {
  background: var(--cs-bg-card); border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-md); padding: 22px;
}
.cs-info-block h4 {
  font-family: var(--cs-font-display); font-size: 0.82rem; font-weight: 600;
  color: var(--cs-gold); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.08em;
}
.cs-info-block p { font-size: 0.84rem; color: var(--cs-text-muted); margin: 0; }

.cs-also-read {
  background: var(--cs-bg-card); border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-md); padding: 26px 30px; margin-top: 44px;
}
.cs-also-read h4 {
  font-family: var(--cs-font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cs-gold); margin-bottom: 14px;
}
.cs-also-read ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.cs-also-read ul a {
  font-size: 0.88rem; color: var(--cs-text-base);
  display: flex; align-items: center; gap: 7px; text-decoration: none;
}
.cs-also-read ul a::before { content: '→'; color: var(--cs-gold); font-size: 0.78rem; }
.cs-also-read ul a:hover { color: var(--cs-gold); }

.cs-contact-info-blocks {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin: 36px 0;
}
.cs-ci-block {
  background: var(--cs-bg-card); border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-md); padding: 26px;
  transition: var(--cs-tr);
}
.cs-ci-block:hover { border-color: rgba(200,160,32,0.28); }
.cs-ci-block .ci-icon { font-size: 1.7rem; margin-bottom: 12px; display: block; }
.cs-ci-block h4 {
  font-family: var(--cs-font-display); font-size: 0.9rem; font-weight: 700;
  color: var(--cs-text-bright); margin-bottom: 5px;
}
.cs-ci-block p { font-size: 0.83rem; color: var(--cs-text-muted); line-height: 1.55; margin: 0; }
.cs-ci-block a { color: var(--cs-gold); }

.cs-team-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin: 28px 0;
}
.cs-team-box {
  background: var(--cs-bg-card); border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-md); padding: 26px 18px; text-align: center;
  transition: var(--cs-tr);
}
.cs-team-box:hover { border-color: rgba(200,160,32,0.22); }
.cs-tm-avatar {
  width: 62px; height: 62px; border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--cs-purple-main), var(--cs-teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cs-font-display); font-size: 1.3rem; font-weight: 700; color: #fff;
}
.cs-tm-name { font-family: var(--cs-font-display); font-size: 0.92rem; font-weight: 600; color: var(--cs-text-bright); margin-bottom: 3px; }
.cs-tm-title { font-size: 0.75rem; color: var(--cs-gold); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.cs-tm-blurb { font-size: 0.8rem; color: var(--cs-text-muted); line-height: 1.5; }

.cs-content-layout {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 44px; padding: 56px 0 88px; align-items: start;
}
.cs-content-body h2 {
  font-family: var(--cs-font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--cs-text-bright); margin: 32px 0 13px;
}
.cs-content-body h3 {
  font-family: var(--cs-font-display); font-size: 1.05rem;
  color: var(--cs-gold); margin: 22px 0 10px;
}
.cs-content-body p { font-size: 0.91rem; color: var(--cs-text-muted); line-height: 1.75; margin-bottom: 14px; }
.cs-content-body ul { margin: 12px 0 16px 20px; }
.cs-content-body li { font-size: 0.9rem; color: var(--cs-text-muted); line-height: 1.65; margin-bottom: 6px; }

.cs-sidebar-panel { position: sticky; top: 88px; }
.cs-sidebar-box {
  background: var(--cs-bg-card); border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-md); padding: 22px; margin-bottom: 18px;
}
.cs-sidebar-box h4 {
  font-family: var(--cs-font-display); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cs-gold); margin-bottom: 14px;
}
.cs-sidebar-box ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.cs-sidebar-box ul a { font-size: 0.84rem; color: var(--cs-text-base); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.cs-sidebar-box ul a:hover { color: var(--cs-gold); }

.cs-sign-mosaic {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 24px 0;
}
.cs-sign-cell {
  background: var(--cs-bg-card); border: 1px solid var(--cs-divider);
  border-radius: var(--cs-r-md); padding: 18px 12px; text-align: center;
  transition: var(--cs-tr);
}
.cs-sign-cell:hover { border-color: rgba(200,160,32,0.3); transform: translateY(-3px); }
.cs-sign-cell .sym { font-size: 1.6rem; display: block; margin-bottom: 5px; }
.cs-sign-cell .nm { font-family: var(--cs-font-display); font-size: 0.74rem; font-weight: 600; color: var(--cs-text-bright); }
.cs-sign-cell .dt { font-size: 0.68rem; color: var(--cs-text-muted); margin-top: 2px; }

@media (max-width: 1024px) {
  .cs-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-footer-columns { grid-template-columns: 1fr 1fr; }
  .cs-team-row { grid-template-columns: repeat(2, 1fr); }
  .cs-content-layout { grid-template-columns: 1fr; }
  .cs-sidebar-panel { position: static; }
}
@media (max-width: 768px) {
  .cs-nav-menu { display: none; }
  .cs-nav-burger { display: flex; }
  .cs-hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .cs-wheel-wrap { display: none; }
  .cs-hero-actions { justify-content: center; }
  .cs-hero-trust { justify-content: center; }
  .cs-hero-desc { margin-left: auto; margin-right: auto; }
  .cs-feat-grid { grid-template-columns: 1fr; }
  .cs-review-grid { grid-template-columns: 1fr; }
  .cs-plans-grid { grid-template-columns: 1fr; }
  .cs-plan-box.cs-plan-featured { transform: none; }
  .cs-contact-layout { grid-template-columns: 1fr; }
  .cs-field-pair { grid-template-columns: 1fr; }
  .cs-footer-columns { grid-template-columns: 1fr; }
  .cs-footer-base { flex-direction: column; text-align: center; }
  .cs-footer-disc { text-align: center; max-width: 100%; }
  .cs-info-pair { grid-template-columns: 1fr; }
  .cs-contact-info-blocks { grid-template-columns: 1fr; }
  .cs-team-row { grid-template-columns: 1fr; }
  .cs-sign-mosaic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cs-wrap { padding: 0 16px; }
  .cs-gdpr-inner { flex-direction: column; align-items: flex-start; }
  .cs-gdpr-btns { width: 100%; }
  .cs-gdpr-ok, .cs-gdpr-no { flex: 1; text-align: center; }
  .cs-form-shell { padding: 22px 18px; }
}
