@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Nunito:wght@300;400;600;700&display=swap');

:root {
  --rzwj-purple: #5C2D91;
  --rzwj-accent: #D4AF37;
  --rzwj-bg: #FDFAF5;
  --rzwj-dark: #1A0A3C;
  --rzwj-text: #2D2D2D;
  --rzwj-white: #FFFFFF;
  --rzwj-purple-light: #7B4DB5;
  --rzwj-purple-pale: #F3EBF9;
  --rzwj-gold-light: #F0E4A8;
  --rzwj-shadow: 0 4px 24px rgba(92, 45, 145, 0.12);
  --rzwj-shadow-hover: 0 8px 40px rgba(92, 45, 145, 0.22);
  --rzwj-radius: 16px;
  --rzwj-radius-sm: 8px;
  --rzwj-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --rzwj-font-heading: 'Cormorant Garamond', Georgia, serif;
  --rzwj-font-body: 'Nunito', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--rzwj-font-body);
  color: var(--rzwj-text);
  background-color: var(--rzwj-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--rzwj-purple);
  text-decoration: none;
  transition: var(--rzwj-transition);
}

a:hover {
  color: var(--rzwj-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--rzwj-font-heading);
  color: var(--rzwj-dark);
  line-height: 1.2;
}

/* ===== UTILITIES ===== */
.rzwj-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rzwj-section {
  padding: 80px 0;
}

.rzwj-section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--rzwj-dark);
}

.rzwj-section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rzwj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--rzwj-font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--rzwj-transition);
  text-decoration: none;
  white-space: nowrap;
}

.rzwj-btn-primary {
  background: var(--rzwj-purple);
  color: var(--rzwj-white);
  border-color: var(--rzwj-purple);
}

.rzwj-btn-primary:hover {
  background: var(--rzwj-dark);
  border-color: var(--rzwj-dark);
  color: var(--rzwj-white);
  transform: translateY(-2px);
  box-shadow: var(--rzwj-shadow-hover);
}

.rzwj-btn-secondary {
  background: transparent;
  color: var(--rzwj-purple);
  border-color: var(--rzwj-purple);
}

.rzwj-btn-secondary:hover {
  background: var(--rzwj-purple);
  color: var(--rzwj-white);
  transform: translateY(-2px);
  box-shadow: var(--rzwj-shadow);
}

.rzwj-btn-gold {
  background: var(--rzwj-accent);
  color: var(--rzwj-dark);
  border-color: var(--rzwj-accent);
}

.rzwj-btn-gold:hover {
  background: #B8941E;
  border-color: #B8941E;
  color: var(--rzwj-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.rzwj-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--rzwj-gold-light);
  color: var(--rzwj-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===== NAVIGATION ===== */
.rzwj-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 10, 60, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.rzwj-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.rzwj-nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--rzwj-purple), var(--rzwj-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--rzwj-white);
  flex-shrink: 0;
}

.rzwj-nav-logo-text {
  font-family: var(--rzwj-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rzwj-white);
  line-height: 1;
}

.rzwj-nav-logo-text span {
  color: var(--rzwj-accent);
}

.rzwj-nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}

.rzwj-nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--rzwj-transition);
  text-decoration: none;
}

.rzwj-nav-links a:hover {
  color: var(--rzwj-accent);
  background: rgba(255,255,255,0.08);
}

.rzwj-nav-cta {
  background: var(--rzwj-accent);
  color: var(--rzwj-dark) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
}

.rzwj-nav-cta:hover {
  background: #B8941E !important;
  color: var(--rzwj-white) !important;
}

#rzwj-nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--rzwj-transition);
}

#rzwj-nav-toggle:hover {
  background: rgba(255,255,255,0.1);
}

#rzwj-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rzwj-white);
  border-radius: 2px;
  transition: var(--rzwj-transition);
}

#rzwj-nav-toggle.rzwj-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#rzwj-nav-toggle.rzwj-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#rzwj-nav-toggle.rzwj-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rzwj-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--rzwj-dark);
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

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

.rzwj-mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: var(--rzwj-transition);
}

.rzwj-mobile-nav a:hover {
  color: var(--rzwj-accent);
  padding-left: 8px;
}

.rzwj-mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== HERO ===== */
.rzwj-hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--rzwj-dark) 0%, #2D1065 50%, var(--rzwj-purple) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 60px;
  position: relative;
  overflow: hidden;
}

.rzwj-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.rzwj-hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rzwj-star {
  position: absolute;
  background: var(--rzwj-white);
  border-radius: 50%;
  animation: rzwjTwinkle 3s ease-in-out infinite;
}

@keyframes rzwjTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.rzwj-zodiac-circle {
  width: 220px;
  height: 220px;
  margin: 0 auto 40px;
  position: relative;
  flex-shrink: 0;
}

.rzwj-zodiac-svg {
  width: 100%;
  height: 100%;
  animation: rzwjRotate 40s linear infinite;
}

@keyframes rzwjRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rzwj-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.rzwj-hero h1 {
  font-family: var(--rzwj-font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--rzwj-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.rzwj-hero h1 span {
  color: var(--rzwj-accent);
}

.rzwj-hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.rzwj-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.rzwj-hero-disclaimer {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--rzwj-radius-sm);
  padding: 12px 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== FEATURES ===== */
.rzwj-features {
  background: var(--rzwj-bg);
}

.rzwj-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.rzwj-feature-card {
  background: var(--rzwj-white);
  border-radius: var(--rzwj-radius);
  padding: 36px 28px;
  box-shadow: var(--rzwj-shadow);
  text-align: center;
  transition: var(--rzwj-transition);
  border: 1px solid rgba(92, 45, 145, 0.07);
  position: relative;
  overflow: hidden;
}

.rzwj-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rzwj-purple), var(--rzwj-accent));
}

.rzwj-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--rzwj-shadow-hover);
}

.rzwj-feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--rzwj-purple-pale), var(--rzwj-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.rzwj-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--rzwj-dark);
}

.rzwj-feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PLANS ===== */
.rzwj-plans {
  background: linear-gradient(160deg, var(--rzwj-purple-pale) 0%, var(--rzwj-bg) 100%);
}

.rzwj-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.rzwj-plan-card {
  background: var(--rzwj-white);
  border-radius: var(--rzwj-radius);
  padding: 36px 28px;
  box-shadow: var(--rzwj-shadow);
  border: 2px solid transparent;
  transition: var(--rzwj-transition);
  position: relative;
}

.rzwj-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rzwj-shadow-hover);
}

.rzwj-plan-card.rzwj-recommended {
  border-color: var(--rzwj-purple);
  transform: scale(1.02);
}

.rzwj-plan-card.rzwj-recommended:hover {
  transform: scale(1.02) translateY(-4px);
}

.rzwj-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--rzwj-purple), var(--rzwj-accent));
  color: var(--rzwj-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.rzwj-plan-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rzwj-dark);
  margin-bottom: 8px;
}

.rzwj-plan-desc {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.rzwj-plan-features {
  margin-bottom: 32px;
}

.rzwj-plan-features li {
  padding: 8px 0;
  color: var(--rzwj-text);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.rzwj-plan-features li::before {
  content: '✦';
  color: var(--rzwj-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.rzwj-plan-cta {
  width: 100%;
  text-align: center;
}

/* ===== REVIEWS ===== */
.rzwj-reviews {
  background: var(--rzwj-bg);
}

.rzwj-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.rzwj-review-card {
  background: var(--rzwj-white);
  border-radius: var(--rzwj-radius);
  padding: 28px;
  box-shadow: var(--rzwj-shadow);
  border: 1px solid rgba(92, 45, 145, 0.07);
  transition: var(--rzwj-transition);
}

.rzwj-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rzwj-shadow-hover);
}

.rzwj-review-stars {
  color: var(--rzwj-accent);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.rzwj-review-text {
  color: var(--rzwj-text);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.rzwj-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rzwj-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rzwj-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--rzwj-white);
  flex-shrink: 0;
}

.rzwj-review-avatar-1 { background: linear-gradient(135deg, #5C2D91, #8B5CF6); }
.rzwj-review-avatar-2 { background: linear-gradient(135deg, #D4AF37, #F59E0B); }
.rzwj-review-avatar-3 { background: linear-gradient(135deg, #1A0A3C, #5C2D91); }
.rzwj-review-avatar-4 { background: linear-gradient(135deg, #7B4DB5, #D4AF37); }

.rzwj-review-name {
  font-weight: 700;
  color: var(--rzwj-dark);
  font-size: 0.95rem;
}

.rzwj-review-meta {
  font-size: 0.82rem;
  color: #999;
}

/* ===== CONTACT FORM ===== */
.rzwj-contact-section {
  background: linear-gradient(160deg, var(--rzwj-dark) 0%, #2D1065 100%);
  color: var(--rzwj-white);
}

.rzwj-contact-section .rzwj-section-title {
  color: var(--rzwj-white);
}

.rzwj-contact-section .rzwj-section-subtitle {
  color: rgba(255,255,255,0.7);
}

.rzwj-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.rzwj-contact-info-block {
  color: rgba(255,255,255,0.85);
}

.rzwj-contact-info-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rzwj-accent);
  margin-bottom: 16px;
}

.rzwj-contact-disclaimer {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--rzwj-radius-sm);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  line-height: 1.6;
}

.rzwj-contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rzwj-contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.rzwj-contact-detail-item .rzwj-detail-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.rzwj-contact-detail-item a {
  color: var(--rzwj-accent);
}

.rzwj-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--rzwj-radius);
  padding: 36px 28px;
}

.rzwj-form-group {
  margin-bottom: 20px;
}

.rzwj-form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9);
}

.rzwj-form-input,
.rzwj-form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--rzwj-radius-sm);
  color: var(--rzwj-white);
  font-family: var(--rzwj-font-body);
  font-size: 0.95rem;
  transition: var(--rzwj-transition);
  outline: none;
}

.rzwj-form-input::placeholder,
.rzwj-form-textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.rzwj-form-input:focus,
.rzwj-form-textarea:focus {
  border-color: var(--rzwj-accent);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.rzwj-form-textarea {
  min-height: 130px;
  resize: vertical;
}

.rzwj-form-submit {
  width: 100%;
}

.rzwj-form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.rzwj-form-success.rzwj-visible {
  display: block;
}

.rzwj-form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.rzwj-form-success h3 {
  font-size: 1.8rem;
  color: var(--rzwj-accent);
  margin-bottom: 12px;
}

.rzwj-form-success p {
  color: rgba(255,255,255,0.8);
}

/* Light form variant for contact.html */
.rzwj-form-light .rzwj-form-label {
  color: var(--rzwj-dark);
}

.rzwj-form-light .rzwj-form-input,
.rzwj-form-light .rzwj-form-textarea {
  background: var(--rzwj-white);
  border: 1px solid rgba(92, 45, 145, 0.2);
  color: var(--rzwj-text);
}

.rzwj-form-light .rzwj-form-input::placeholder,
.rzwj-form-light .rzwj-form-textarea::placeholder {
  color: #aaa;
}

.rzwj-form-light .rzwj-form-input:focus,
.rzwj-form-light .rzwj-form-textarea:focus {
  border-color: var(--rzwj-purple);
  box-shadow: 0 0 0 3px rgba(92, 45, 145, 0.12);
}

.rzwj-form-light .rzwj-form-success h3 {
  color: var(--rzwj-purple);
}

.rzwj-form-light .rzwj-form-success p {
  color: var(--rzwj-text);
}

/* ===== FAQ ===== */
.rzwj-faq {
  background: var(--rzwj-purple-pale);
}

.rzwj-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rzwj-faq-item {
  background: var(--rzwj-white);
  border-radius: var(--rzwj-radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(92, 45, 145, 0.06);
  border: 1px solid rgba(92, 45, 145, 0.08);
}

.rzwj-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--rzwj-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--rzwj-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--rzwj-transition);
}

.rzwj-faq-question:hover {
  color: var(--rzwj-purple);
  background: rgba(92, 45, 145, 0.02);
}

.rzwj-faq-question.rzwj-active {
  color: var(--rzwj-purple);
  background: rgba(92, 45, 145, 0.04);
}

.rzwj-faq-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--rzwj-transition);
  color: var(--rzwj-accent);
}

.rzwj-faq-question.rzwj-active .rzwj-faq-icon {
  transform: rotate(45deg);
}

.rzwj-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.rzwj-faq-answer.rzwj-open {
  max-height: 600px;
}

.rzwj-faq-answer-inner {
  padding: 0 24px 20px;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
  border-top: 1px solid rgba(92, 45, 145, 0.08);
  padding-top: 16px;
}

.rzwj-faq-answer-inner a {
  color: var(--rzwj-purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== CTA BANNER ===== */
.rzwj-cta-banner {
  background: linear-gradient(135deg, var(--rzwj-dark) 0%, var(--rzwj-purple) 100%);
  color: var(--rzwj-white);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.rzwj-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
  border-radius: 50%;
}

.rzwj-cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--rzwj-white);
  margin-bottom: 16px;
  position: relative;
}

.rzwj-cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.rzwj-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== FOOTER ===== */
.rzwj-footer {
  background: var(--rzwj-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.rzwj-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.rzwj-footer-col h4 {
  font-family: var(--rzwj-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rzwj-white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rzwj-accent);
  display: inline-block;
}

.rzwj-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.rzwj-footer-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--rzwj-purple), var(--rzwj-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.rzwj-footer-logo-text {
  font-family: var(--rzwj-font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rzwj-white);
}

.rzwj-footer-logo-text span {
  color: var(--rzwj-accent);
}

.rzwj-footer-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.rzwj-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rzwj-footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  text-decoration: none;
  transition: var(--rzwj-transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rzwj-footer-links a::before {
  content: '→';
  color: var(--rzwj-accent);
  font-size: 0.8rem;
}

.rzwj-footer-links a:hover {
  color: var(--rzwj-accent);
  padding-left: 4px;
}

.rzwj-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ===== COOKIE BANNER ===== */
#rzwj-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--rzwj-dark);
  border-top: 2px solid var(--rzwj-accent);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

#rzwj-cookie-bar.rzwj-visible {
  transform: translateY(0);
}

.rzwj-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.rzwj-cookie-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}

.rzwj-cookie-text a {
  color: var(--rzwj-accent);
  font-weight: 600;
}

.rzwj-cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rzwj-cookie-accept {
  padding: 10px 24px;
  background: var(--rzwj-accent);
  color: var(--rzwj-dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--rzwj-font-body);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--rzwj-transition);
}

.rzwj-cookie-accept:hover {
  background: #B8941E;
  color: var(--rzwj-white);
}

.rzwj-cookie-decline {
  padding: 10px 24px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--rzwj-font-body);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--rzwj-transition);
}

.rzwj-cookie-decline:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--rzwj-white);
}

/* ===== BREADCRUMB ===== */
.rzwj-breadcrumb {
  background: var(--rzwj-purple-pale);
  padding: 14px 0;
  border-bottom: 1px solid rgba(92, 45, 145, 0.1);
}

.rzwj-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rzwj-breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #777;
}

.rzwj-breadcrumb-list li:not(:last-child)::after {
  content: '›';
  color: var(--rzwj-accent);
  font-size: 1rem;
}

.rzwj-breadcrumb-list a {
  color: var(--rzwj-purple);
  font-weight: 600;
  text-decoration: none;
}

.rzwj-breadcrumb-list a:hover {
  color: var(--rzwj-accent);
}

/* ===== CONTENT PAGE ===== */
.rzwj-content-hero {
  background: linear-gradient(135deg, var(--rzwj-dark) 0%, var(--rzwj-purple) 100%);
  padding: 80px 20px;
  text-align: center;
  color: var(--rzwj-white);
}

.rzwj-content-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--rzwj-white);
  margin-bottom: 16px;
}

.rzwj-content-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

.rzwj-content-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.rzwj-content-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--rzwj-dark);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rzwj-gold-light);
}

.rzwj-content-body h2:first-child {
  margin-top: 0;
}

.rzwj-content-body p {
  margin-bottom: 20px;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.85;
}

.rzwj-content-body ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.rzwj-content-body ul li {
  padding: 6px 0 6px 28px;
  color: #444;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
}

.rzwj-content-body ul li::before {
  content: '✦';
  color: var(--rzwj-accent);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 9px;
}

.rzwj-also-read {
  background: var(--rzwj-purple-pale);
  border-radius: var(--rzwj-radius);
  padding: 36px;
  margin-top: 56px;
}

.rzwj-also-read h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rzwj-dark);
  margin-bottom: 20px;
}

.rzwj-also-read-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.rzwj-also-read-link {
  background: var(--rzwj-white);
  border-radius: var(--rzwj-radius-sm);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--rzwj-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(92, 45, 145, 0.1);
  transition: var(--rzwj-transition);
  font-size: 0.97rem;
}

.rzwj-also-read-link::before {
  content: '→';
  color: var(--rzwj-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rzwj-also-read-link:hover {
  background: var(--rzwj-purple);
  color: var(--rzwj-white);
  border-color: var(--rzwj-purple);
  transform: translateX(4px);
}

/* ===== CONTACT PAGE CARDS ===== */
.rzwj-contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

.rzwj-contact-card {
  background: var(--rzwj-white);
  border-radius: var(--rzwj-radius);
  padding: 32px 28px;
  box-shadow: var(--rzwj-shadow);
  border-top: 4px solid var(--rzwj-purple);
  transition: var(--rzwj-transition);
}

.rzwj-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rzwj-shadow-hover);
}

.rzwj-contact-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.rzwj-contact-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rzwj-dark);
  margin-bottom: 10px;
}

.rzwj-contact-card p {
  color: #666;
  font-size: 0.93rem;
  line-height: 1.65;
}

.rzwj-contact-card a {
  color: var(--rzwj-purple);
  font-weight: 600;
}

/* ===== ABOUT PAGE ===== */
.rzwj-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

.rzwj-team-card {
  background: var(--rzwj-white);
  border-radius: var(--rzwj-radius);
  padding: 36px 28px;
  box-shadow: var(--rzwj-shadow);
  text-align: center;
  border: 1px solid rgba(92, 45, 145, 0.07);
  transition: var(--rzwj-transition);
}

.rzwj-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rzwj-shadow-hover);
}

.rzwj-team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rzwj-purple), var(--rzwj-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rzwj-font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--rzwj-white);
  margin: 0 auto 20px;
}

.rzwj-team-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rzwj-dark);
  margin-bottom: 4px;
}

.rzwj-team-role {
  font-size: 0.9rem;
  color: var(--rzwj-purple);
  font-weight: 600;
  margin-bottom: 14px;
}

.rzwj-team-bio {
  color: #666;
  font-size: 0.93rem;
  line-height: 1.7;
}

.rzwj-info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.95rem;
}

.rzwj-info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(92, 45, 145, 0.08);
}

.rzwj-info-table td:first-child {
  font-weight: 700;
  color: var(--rzwj-dark);
  width: 40%;
  background: var(--rzwj-purple-pale);
}

.rzwj-info-table td:last-child {
  color: #555;
}

/* ===== LEGAL PAGES ===== */
.rzwj-legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

.rzwj-legal-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--rzwj-dark);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rzwj-gold-light);
}

.rzwj-legal-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rzwj-purple);
  margin: 24px 0 10px;
}

.rzwj-legal-content p {
  margin-bottom: 16px;
  color: #444;
  font-size: 0.97rem;
  line-height: 1.8;
}

.rzwj-legal-content ul {
  margin-bottom: 20px;
  padding-left: 0;
}

.rzwj-legal-content ul li {
  padding: 5px 0 5px 24px;
  position: relative;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
}

.rzwj-legal-content ul li::before {
  content: '•';
  color: var(--rzwj-purple);
  position: absolute;
  left: 8px;
  font-size: 1.1rem;
  top: 4px;
}

.rzwj-legal-meta {
  background: var(--rzwj-purple-pale);
  border-radius: var(--rzwj-radius-sm);
  padding: 14px 20px;
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 36px;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .rzwj-nav-links {
    display: flex;
  }

  #rzwj-nav-toggle {
    display: none;
  }

  .rzwj-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rzwj-plans-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .rzwj-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rzwj-contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .rzwj-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rzwj-cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .rzwj-cookie-text {
    flex: 1;
    margin-right: 24px;
  }

  .rzwj-zodiac-circle {
    width: 280px;
    height: 280px;
  }

  .rzwj-contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rzwj-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rzwj-also-read-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rzwj-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .rzwj-reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .rzwj-zodiac-circle {
    width: 320px;
    height: 320px;
  }
}

/* ===== INNER PAGE HERO ===== */
.rzwj-page-hero {
  background: linear-gradient(135deg, var(--rzwj-dark) 0%, var(--rzwj-purple) 100%);
  padding: 64px 20px;
  text-align: center;
}

.rzwj-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--rzwj-white);
  margin-bottom: 12px;
}

.rzwj-page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== HIGHLIGHT BOX ===== */
.rzwj-highlight-box {
  background: linear-gradient(135deg, var(--rzwj-purple-pale), var(--rzwj-gold-light));
  border-radius: var(--rzwj-radius);
  padding: 28px 32px;
  margin: 32px 0;
  border-left: 4px solid var(--rzwj-purple);
}

.rzwj-highlight-box p {
  margin: 0;
  font-weight: 600;
  color: var(--rzwj-dark) !important;
}
