:root {
  --bg: #0b0118;
  --bg-elev: #16082c;
  --bg-elev-2: #1b0b36;
  --text: #f5f1ff;
  --text-muted: #94a3b8;
  --accent-purple: #a855f7;
  --accent-cyan: #22d3ee;
  --accent-gold: #f6d07a;
  --border: rgba(255, 255, 255, 0.1);
  --glass: rgba(22, 8, 44, 0.65);
  --shadow-glow: 0 0 18px rgba(168, 85, 247, 0.35), 0 0 32px rgba(34, 211, 238, 0.2);
  --shadow-soft: 0 16px 40px rgba(5, 2, 13, 0.45);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --max-w: 1200px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 700px at 20% -10%, rgba(168, 85, 247, 0.25), transparent 60%),
    radial-gradient(1000px 600px at 90% 10%, rgba(34, 211, 238, 0.2), transparent 55%),
    radial-gradient(900px 600px at 30% 90%, rgba(88, 28, 135, 0.18), transparent 60%);
  background-attachment: fixed;
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0.01em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.section {
  padding: 80px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.section-head.center {
  text-align: center;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  margin: 0 0 16px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 16px;
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.script {
  font-family: "Great Vibes", "Dancing Script", cursive;
  color: var(--accent-cyan);
  font-size: 22px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 1, 24, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 18px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent-cyan);
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.logo {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.logo img {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.35));
}

.logo-hero img {
  width: min(360px, 70vw);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.45));
}

.logo-script {
  font-family: "Great Vibes", "Dancing Script", cursive;
  letter-spacing: 0.05em;
  color: var(--accent-purple);
  font-size: 16px;
}

.hero {
  padding: 110px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-portrait {
  position: relative;
  display: grid;
  place-items: center;
  padding: 16px;
}

.halo {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.35), rgba(34, 211, 238, 0.1) 60%, transparent 70%);
  filter: blur(6px);
}

.portrait {
  width: min(320px, 80vw);
  border-radius: 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.dreamy {
  filter: saturate(0.9) contrast(1.05) drop-shadow(0 0 18px rgba(168, 85, 247, 0.3));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  color: #0b0118;
  background: linear-gradient(120deg, var(--accent-purple), var(--accent-cyan));
  box-shadow: 0 10px 25px rgba(34, 211, 238, 0.25), 0 0 16px rgba(168, 85, 247, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(34, 211, 238, 0.35), 0 0 22px rgba(168, 85, 247, 0.45);
}

.btn-ghost {
  color: var(--text);
  border: 2px solid var(--accent-cyan);
  background: rgba(255, 255, 255, 0.03);
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.mentor-quote {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  font-size: 18px;
  line-height: 1.7;
  box-shadow: var(--shadow-soft);
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: 12px;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.06);
  font-family: "Playfair Display", serif;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.module-sub {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  color: rgba(255, 255, 255, 0.85);
}

.module-lead {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.module-card ul {
  display: grid;
  gap: 10px;
  text-align: left;
  margin: 0 0 16px;
  color: var(--text-muted);
}

.module-card li::before {
  content: "✦ ";
  color: var(--accent-purple);
}

.module-skill {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.module-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  gap: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.module-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.25);
}

.module-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(168, 85, 247, 0.2), rgba(34, 211, 238, 0.2));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(168, 85, 247, 0.25);
  font-size: 22px;
}

.course-note {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.course-limit {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.course-list {
  display: grid;
  gap: 10px;
  text-align: left;
  color: var(--text-muted);
}

.course-list li::before {
  content: "✦ ";
  color: var(--accent-cyan);
}

.course-divider {
  height: 1px;
  background: rgba(34, 211, 238, 0.3);
  margin: 8px 0;
}

.course-flow ul {
  display: grid;
  gap: 8px;
  text-align: left;
  color: var(--text-muted);
  margin: 0;
}

.btn-large {
  padding: 16px 28px;
  font-size: 14px;
}

.course-card ul {
  display: grid;
  gap: 10px;
  text-align: left;
  color: var(--text-muted);
}

.course-card li::before {
  content: "✦ ";
  color: var(--accent-purple);
}

.course-price {
  font-size: clamp(48px, 6vw, 72px);
  color: var(--accent-cyan);
  font-weight: 600;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.4);
}
.anmeldung-sektion {
  background: rgba(22, 8, 44, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  margin-bottom: 24px;
}

.anmeldung-text {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.anmeldung-hinweise {
  display: grid;
  gap: 10px;
  color: var(--text-muted);
}

.anmeldung-hinweise a {
  color: var(--accent-cyan);
}

.anmeldung-form {
  display: grid;
  gap: 14px;
}

.anmeldung-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.anmeldung-form input[type="text"],
.anmeldung-form input[type="email"] {
  background: rgba(11, 1, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
}

.anmeldung-form fieldset {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
}

.anmeldung-form legend {
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.7);
}

.anmeldung-form .option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

.anmeldung-form .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
}

.anmeldung-divider {
  height: 1px;
  background: rgba(34, 211, 238, 0.25);
}



.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
}

.pricing-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 6px;
  text-align: left;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
}

.pricing-card.highlight {
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.25);
}

.pricing-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.pricing-price {
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--accent-cyan);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(34, 211, 238, 0.25);
}

.pricing-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.pricing-list {
  display: grid;
  gap: 4px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.3;
}

.pricing-list li::before {
  content: "✦ ";
  color: var(--accent-cyan);
}

.paypal-box {
  position: relative;
  max-width: 260px;
  margin: 4px 0 0;
  min-height: 45px;
}

.paypal-blocker {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(11, 1, 24, 0.35);
  cursor: pointer;
  border-radius: 10px;
  backdrop-filter: blur(2px);
  z-index: 3;
}

.paypal-locked {
  opacity: 0.5;
  filter: grayscale(0.6);
}

.paypal-locked iframe {
  pointer-events: none;
}

.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}


.pricing-note {
  margin-top: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.horoscope-shell {
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 16%, rgba(245, 214, 158, 0.16), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(168, 132, 78, 0.18), transparent 16%),
    linear-gradient(180deg, rgba(39, 22, 8, 0.94), rgba(16, 8, 4, 0.96));
  border: 1px solid rgba(239, 215, 163, 0.16);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 236, 198, 0.04);
}

.horoscope-form,
.horoscope-result {
  background: rgba(33, 19, 9, 0.82);
  border: 1px solid rgba(239, 215, 163, 0.14);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.horoscope-result {
  padding: 0;
  overflow: hidden;
}

.horoscope-poster {
  position: relative;
  padding: 34px 30px 30px;
  color: #efd7a3;
  background:
    radial-gradient(circle at 50% 35%, rgba(239, 215, 163, 0.12), transparent 22%),
    radial-gradient(circle at 18% 16%, rgba(203, 170, 111, 0.18), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(168, 132, 78, 0.15), transparent 16%),
    linear-gradient(180deg, rgba(34, 24, 12, 0.84), rgba(15, 10, 7, 0.94)),
    linear-gradient(135deg, rgba(163, 127, 82, 0.14), rgba(255, 255, 255, 0.02));
}

.horoscope-export-desktop {
  width: 1100px !important;
}

.horoscope-export-desktop .horoscope-result-head {
  flex-direction: row !important;
}

.horoscope-export-desktop .horoscope-actions {
  justify-content: flex-end !important;
}

.horoscope-export-desktop .horoscope-grid {
  grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.9fr) minmax(280px, 1.8fr) !important;
}

.horoscope-export-desktop .horoscope-card-planets .horoscope-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.horoscope-export-desktop .horoscope-main-layout {
  grid-template-columns: 460px minmax(0, 1fr) !important;
  align-items: start !important;
}

.horoscope-export-desktop .horoscope-wheel {
  width: 460px !important;
}

.horoscope-export-desktop .horoscope-columns {
  grid-template-columns: 1fr 1fr !important;
}

.horoscope-poster.is-loading > :not(.horoscope-loading) {
  visibility: hidden;
}

.horoscope-poster::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(233, 198, 132, 0.28);
  pointer-events: none;
}

.horoscope-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 72%, rgba(255, 255, 255, 0.3) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.4) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 60%, rgba(255, 255, 255, 0.22) 0 1px, transparent 2px);
  background-size: 160px 160px, 210px 210px, 180px 180px, 240px 240px;
  mix-blend-mode: screen;
}

.horoscope-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 34px 30px;
  z-index: 4;
  background:
    radial-gradient(circle at 50% 32%, rgba(239, 215, 163, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(28, 18, 10, 0.92), rgba(14, 9, 5, 0.96));
}

.horoscope-loading-inner {
  width: min(560px, 100%);
  text-align: center;
}

.horoscope-loading-orbit {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 1px solid rgba(239, 215, 163, 0.28);
  box-shadow: inset 0 0 28px rgba(239, 215, 163, 0.08);
}

.horoscope-loading-orbit span {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(239, 215, 163, 0.18);
  transform: translate(-50%, -50%);
}

.horoscope-loading-orbit span:nth-child(1) {
  width: 100%;
  height: 100%;
  animation: horoscopeRotate 6s linear infinite;
}

.horoscope-loading-orbit span:nth-child(2) {
  width: 72%;
  height: 72%;
  animation: horoscopeRotateReverse 5.2s linear infinite;
}

.horoscope-loading-orbit span:nth-child(3) {
  width: 42%;
  height: 42%;
  background: radial-gradient(circle, rgba(247, 232, 198, 0.95), rgba(219, 187, 128, 0.78) 55%, rgba(56, 38, 21, 0.9) 100%);
  box-shadow: 0 0 24px rgba(239, 215, 163, 0.16);
}

.horoscope-loading-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: rgba(239, 215, 163, 0.68);
}

.horoscope-loading-text {
  margin: 0 auto;
  max-width: 42ch;
  color: rgba(244, 227, 192, 0.82);
  font-size: 18px;
  line-height: 1.7;
  min-height: 3.4em;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.horoscope-loading-text.is-changing {
  opacity: 0.2;
  transform: translateY(8px);
}

@keyframes horoscopeRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes horoscopeRotateReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

.horoscope-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(180px, 0.9fr) minmax(280px, 1.8fr);
  gap: 20px 18px;
  align-items: end;
}

.horoscope-form-loading {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(239, 215, 163, 0.06);
  border: 1px solid rgba(239, 215, 163, 0.12);
}

.horoscope-form-loading[hidden],
.horoscope-loading[hidden] {
  display: none !important;
}

.horoscope-form-loading-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: rgba(239, 215, 163, 0.62);
}

.horoscope-form-loading-title {
  margin: 0;
  color: #f6dfaf;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.2;
}

.horoscope-form label {
  display: grid;
  gap: 10px;
  font-size: 16px;
  color: rgba(245, 226, 191, 0.92);
  min-width: 0;
}

.horoscope-field-wide {
  grid-column: auto;
}

.horoscope-form input {
  width: 100%;
  min-height: 62px;
  background: linear-gradient(180deg, rgba(17, 10, 5, 0.96), rgba(40, 23, 10, 0.9));
  border: 1px solid rgba(239, 215, 163, 0.24);
  border-radius: 18px;
  padding: 16px 18px;
  color: #f7e5bd;
  font: inherit;
  font-size: 18px;
  line-height: 1.3;
  box-shadow: inset 0 1px 0 rgba(255, 239, 210, 0.04);
  position: relative;
  z-index: 2;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
}

.horoscope-form input::placeholder {
  color: rgba(242, 221, 182, 0.52);
}

.horoscope-form input:focus {
  outline: none;
  border-color: rgba(239, 215, 163, 0.48);
  box-shadow:
    0 0 0 4px rgba(239, 215, 163, 0.08),
    inset 0 1px 0 rgba(255, 239, 210, 0.06);
}

.horoscope-form label:nth-child(4) {
  grid-column: 1 / 2;
}

#horoscope-submit {
  min-width: 260px;
}

.horoscope-note {
  margin: 18px 0 22px;
  color: rgba(242, 223, 187, 0.74);
  font-size: 15px;
}

.btn-horoscope-jump {
  border-color: rgba(239, 215, 163, 0.42);
  color: #f5ddb0;
  background: rgba(239, 215, 163, 0.06);
}

.horoscope-result-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.horoscope-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.horoscope-main-layout {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.horoscope-side-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.horoscope-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: rgba(239, 215, 163, 0.68);
}

.horoscope-status {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(239, 215, 163, 0.26);
  color: #f5ddb0;
  background: rgba(239, 215, 163, 0.08);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.horoscope-summary {
  margin: 0;
  color: rgba(244, 227, 192, 0.86);
  text-align: left;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.horoscope-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.horoscope-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(239, 215, 163, 0.05);
  border: 1px solid rgba(239, 215, 163, 0.16);
  color: rgba(244, 227, 192, 0.84);
  font-size: 13px;
}

.horoscope-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.horoscope-card {
  background: linear-gradient(180deg, rgba(24, 16, 10, 0.88), rgba(12, 8, 5, 0.88));
  border: 1px solid rgba(239, 215, 163, 0.16);
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 240, 210, 0.03);
}

.horoscope-card h4 {
  margin-bottom: 14px;
  color: #f0d8a7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
}

.horoscope-list {
  display: grid;
  gap: 10px;
}

.horoscope-card-planets .horoscope-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.horoscope-item {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(239, 215, 163, 0.035);
  border: 1px solid rgba(239, 215, 163, 0.1);
}

.horoscope-item strong {
  color: #f4ddb0;
}

.horoscope-item span {
  color: rgba(243, 224, 189, 0.72);
  font-size: 14px;
}

.horoscope-wheel-stage {
  display: grid;
  place-items: center;
  margin: 0;
  position: relative;
  z-index: 1;
}

.horoscope-wheel {
  --orbit-radius: min(35vw, 210px);
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 214, 158, 0.1), transparent 38%),
    radial-gradient(circle at 50% 50%, rgba(8, 5, 3, 0.92) 0 46%, rgba(20, 14, 9, 0.96) 46% 100%);
  box-shadow:
    0 0 0 1px rgba(236, 206, 145, 0.22),
    inset 0 0 0 2px rgba(239, 215, 163, 0.08),
    inset 0 0 48px rgba(0, 0, 0, 0.55);
}

.horoscope-ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(236, 206, 145, 0.55);
}

.horoscope-ring-outer {
  width: 96%;
  height: 96%;
}

.horoscope-ring-mid {
  width: 78%;
  height: 78%;
}

.horoscope-ring-inner {
  width: 56%;
  height: 56%;
}

.horoscope-cross {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 92%;
  background: linear-gradient(180deg, transparent, rgba(236, 206, 145, 0.8), transparent);
  transform-origin: center center;
}

.horoscope-cross-a {
  transform: translate(-50%, -50%) rotate(0deg);
}

.horoscope-cross-b {
  transform: translate(-50%, -50%) rotate(90deg);
}

.horoscope-moon-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 249, 233, 0.96), rgba(226, 198, 145, 0.88) 38%, rgba(89, 70, 48, 0.9) 78%, rgba(20, 15, 10, 0.96) 100%);
  box-shadow:
    0 0 36px rgba(242, 214, 162, 0.22),
    inset -18px -18px 30px rgba(55, 41, 25, 0.36),
    inset 12px 12px 20px rgba(255, 247, 221, 0.18);
}

.horoscope-zodiac {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  margin-left: -56px;
  text-align: center;
  color: rgba(241, 219, 173, 0.8);
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(11px, 1.4vw, 16px);
  letter-spacing: 0.08em;
  transform-origin: center 210px;
}

.horoscope-zodiac.is-highlight {
  color: #fff4d8;
  text-shadow: 0 0 10px rgba(243, 215, 164, 0.5);
}

.sign-1 { transform: translate(-50%, -50%) rotate(0deg) translateY(calc(var(--orbit-radius) * -1)); }
.sign-2 { transform: translate(-50%, -50%) rotate(30deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-30deg); }
.sign-3 { transform: translate(-50%, -50%) rotate(60deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-60deg); }
.sign-4 { transform: translate(-50%, -50%) rotate(90deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-90deg); }
.sign-5 { transform: translate(-50%, -50%) rotate(120deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-120deg); }
.sign-6 { transform: translate(-50%, -50%) rotate(150deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-150deg); }
.sign-7 { transform: translate(-50%, -50%) rotate(180deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-180deg); }
.sign-8 { transform: translate(-50%, -50%) rotate(210deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-210deg); }
.sign-9 { transform: translate(-50%, -50%) rotate(240deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-240deg); }
.sign-10 { transform: translate(-50%, -50%) rotate(270deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-270deg); }
.sign-11 { transform: translate(-50%, -50%) rotate(300deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-300deg); }
.sign-12 { transform: translate(-50%, -50%) rotate(330deg) translateY(calc(var(--orbit-radius) * -1)) rotate(-330deg); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  gap: 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.testimonial-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.stars {
  color: var(--accent-gold);
  letter-spacing: 0.12em;
}


.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  background: rgba(9, 1, 20, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}


.bg-orb {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  z-index: 0;
}

.orb-1 {
  background: rgba(168, 85, 247, 0.35);
  top: -120px;
  left: -80px;
}

.orb-2 {
  background: rgba(34, 211, 238, 0.3);
  top: 20%;
  right: -120px;
}

.orb-3 {
  background: rgba(120, 46, 180, 0.25);
  bottom: -120px;
  left: 10%;
}

main, header, footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-left, .nav-right {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 0 50px;
  }

  .btn {
    width: 100%;
  }

  .horoscope-field-wide {
    grid-column: auto;
  }

  .horoscope-result-head {
    flex-direction: column;
  }

  .horoscope-shell {
    padding: 18px;
    border-radius: 26px;
  }

  .horoscope-actions {
    justify-content: stretch;
  }

  .horoscope-main-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .horoscope-side-panel {
    gap: 12px;
  }

  .horoscope-grid {
    grid-template-columns: 1fr;
  }

  .horoscope-form label:nth-child(4) {
    grid-column: auto;
  }

  .horoscope-card-planets .horoscope-list {
    grid-template-columns: 1fr;
  }

  .horoscope-poster {
    padding: 24px 18px;
  }

  .horoscope-summary {
    text-align: center;
  }

  .horoscope-meta {
    justify-content: center;
  }
}
