/* --------------------------------------------------------------------------
   1. Root Variables & Theme Palette
   -------------------------------------------------------------------------- */
:root {
  /* Studio Backdrop matching bg.png */
  --bg-studio-top: #d8c9c1;
  --bg-studio-mid: #c9b9b0;
  --bg-studio-bot: #b8a79d;

  /* Glass Pane & Bevel Refractions */
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-inner-dark: rgba(245, 209, 221, 0.78);
  --glass-inner-border: rgba(255, 255, 255, 0.12);

  /* Accents */
  --gold-champagne: #F4D4A8;
  --gold-accent: #D89B74;
  --rose-soft: #E5A4B4;
  --rose-vibrant: #D87588;
  --rose-glow: rgba(229, 164, 180, 0.4);

  /* Radio Pills */
  --pill-bg: rgba(45, 36, 39, 0.68);
  --pill-border: rgba(255, 255, 255, 0.15);
  --pill-active-bg: rgba(58, 40, 46, 0.88);
  --pill-active-border: rgba(229, 164, 180, 0.85);

  /* CTA Button Gradient */
  --btn-grad-start: #d87588;
  --btn-grad-end: #ebba97;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;
  --font-brand: 'Cinzel', serif;

  /* Text Colors */
  --text-main: #FFFFFF;
  --text-cream: #F5EAE4;
  --text-muted: rgba(255, 255, 255, 0.75);
  --text-dim: rgba(255, 255, 255, 0.5);
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-sans);
  background-color: var(--bg-studio-mid);
  color: var(--text-main);
  overflow-x: hidden;
}


/* --------------------------------------------------------------------------
   2. Full Screen 16:9 Cover Backdrop (bg.png) with Sunlight Beams
   -------------------------------------------------------------------------- */
.ambient-wrapper {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url('assets/bg2.png') no-repeat center center / cover;
}

.sunlight-beams-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.top-sun-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(255, 240, 210, 0.55) 0%, rgba(247, 208, 138, 0.25) 45%, transparent 75%);
  filter: blur(35px);
}

.sunlight-beam {
  position: absolute;
  top: -100px;
  height: 120vh;
  background: linear-gradient(175deg, rgba(255, 242, 215, 0.3) 0%, rgba(247, 208, 138, 0.12) 45%, transparent 80%);
  transform-origin: top center;
  filter: blur(22px);
  opacity: 0.8;
  animation: beamShimmer 8s infinite ease-in-out alternate;
}

.beam-1 { left: 18%; width: 160px; transform: rotate(-14deg); animation-delay: 0s; }
.beam-2 { left: 36%; width: 250px; transform: rotate(-6deg); animation-delay: 1.8s; }
.beam-3 { left: 55%; width: 230px; transform: rotate(5deg); animation-delay: 3.2s; }
.beam-4 { left: 74%; width: 180px; transform: rotate(15deg); animation-delay: 5s; }

@keyframes beamShimmer {
  0% { opacity: 0.55; transform: scaleX(0.92); }
  50% { opacity: 0.9; }
  100% { opacity: 0.65; transform: scaleX(1.12); }
}

.particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.lux-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 3;
}

/* --------------------------------------------------------------------------
   3. Top Navigation Header
   -------------------------------------------------------------------------- */
.top-nav {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 16px 36px;
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

/* Enlarge Header Logo Image */
.header-logo-img {
  height: 78px;
  max-height: 86px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.header-logo-img:hover {
  transform: scale(1.05);
}

.brand-title {
  font-family: var(--font-brand);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 4.5px;
  color: #FFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Marked Area Logo Container in Question Section */
.pane-logo-branding {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  padding-top: 8px;
  width: 100%;
}

.pane-logo-img {
  max-width: 220px;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.65));
  transition: transform 0.3s ease;
}

.pane-logo-img:hover {
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   4. Stage Viewport & Standalone 3D Curved Glass Frame
   -------------------------------------------------------------------------- */
.stage-viewport {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  min-height: calc(100vh - 140px);
  perspective: 1200px;
}

.glass-stage-3d-wrapper {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  flex: 1;
}

/* Full Screen Transparent Stage Container (Overlays directly on bg2.png 3D glass pane) */
.curved-glass-pane {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 140px);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
  transform-style: preserve-3d;
  display: grid;
  grid-template-columns: minmax(360px, 440px) 1fr;
  align-items: center;
  padding: 20px 60px 20px 80px;
  gap: 40px;
}

.curved-glass-pane::before {
  display: none;
}

/* --------------------------------------------------------------------------
   5. Left Pane: Transparent Question Section
   -------------------------------------------------------------------------- */
.wizard-pane {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 5;
}

/* Transparent Question Shell (No background fill/box color) */
.mobile-phone-card {
  position: relative;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-card-brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2px;
}

.phone-brand-emblem {
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 8px rgba(247, 208, 138, 0.6));
}

.phone-brand-title {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold-champagne);
  line-height: 1.15;
}

.phone-brand-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--rose-soft);
  margin-top: 1px;
}

/* Step Indicator & Progress Slider Track */
.step-indicator-card {
  width: 100%;
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
}

.step-slider-track {
  position: relative;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.step-slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--btn-grad-start), var(--btn-grad-end));
  border-radius: 10px;
  box-shadow: 0 0 8px var(--rose-glow);
  transition: width 0.4s var(--ease-smooth);
}

.step-slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFF;
  border: 2px solid var(--rose-vibrant);
  box-shadow: 0 0 8px #FFF;
  transition: left 0.4s var(--ease-smooth);
}

/* Questionnaire Panels Stack */
.wizard-steps-stack {
  margin: 16px 0;
  width: 100%;
}

.step-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.step-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.ai-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose-soft);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.sparkle-icon {
  font-size: 0.95rem;
}

.step-main-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-cream);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.step-subtext {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Radio Pill Cards */
.options-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 20px;
}

.custom-radio-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  border-radius: 16px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.25s var(--ease-smooth);
}

.custom-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.option-icon {
  font-size: 1.15rem;
  width: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.option-label {
  font-size: 0.95rem;
  font-weight: 400;
  color: #FFF;
}

.radio-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s ease;
}

.custom-radio-card:hover {
  background: rgba(58, 44, 48, 0.7);
  border-color: rgba(229, 164, 180, 0.5);
}

.custom-radio-card.selected,
.custom-radio-card input[type="radio"]:checked + .radio-card-content + .radio-indicator {
  border-color: var(--rose-soft);
  background: radial-gradient(circle, var(--rose-vibrant) 45%, transparent 50%);
  box-shadow: 0 0 10px var(--rose-glow);
}

.custom-radio-card.selected {
  background: var(--pill-active-bg);
  border-color: var(--pill-active-border);
  box-shadow: 0 0 16px rgba(216, 117, 136, 0.35);
}

/* Callout Notice Box */
.notice-callout-box {
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.22);
  border-left: 3px solid var(--gold-champagne);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 12px 0;
}

.callout-icon {
  font-size: 1.15rem;
}

.callout-content {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

/* CTA Buttons */
.wizard-actions {
  margin-top: 10px;
}

.flex-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--btn-grad-start) 0%, var(--btn-grad-end) 100%);
  border: none;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  color: #FFF;
  cursor: pointer;
  box-shadow: 
    0 6px 20px rgba(216, 117, 136, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.btn-continue:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(216, 117, 136, 0.65);
}

.btn-secondary-back {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
}

.arrow-icon {
  width: 16px;
  height: 16px;
}

.trust-footer-note {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Completion Panel */
.completion-hero {
  text-align: center;
  padding: 10px 0;
}

.success-ring-glow {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 15px rgba(244, 212, 168, 0.6));
}

.btn-catalog-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(90deg, #d87588 0%, #ebba97 100%);
  border-radius: 30px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFF;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(216, 117, 136, 0.5);
}

/* --------------------------------------------------------------------------
   6. Right Pane: Glowing Orbital Visual
   -------------------------------------------------------------------------- */
.orbital-pane {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2;
}

.orbital-stage-container {
  position: relative;
  width: 540px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Core Emblem */
.orbital-center-core {
  position: absolute;
  z-index: 5;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(30, 22, 25, 0.75);
  border: 2px solid rgba(244, 212, 168, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 35px rgba(247, 208, 138, 0.65),
    inset 0 0 20px rgba(244, 212, 168, 0.4);
}

.core-pulse-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(247, 208, 138, 0.6);
  animation: pulseCoreRing 3s ease-in-out infinite;
}

@keyframes pulseCoreRing {
  0% { transform: scale(0.92); opacity: 0.4; }
  50% { transform: scale(1.14); opacity: 0.95; }
  100% { transform: scale(0.92); opacity: 0.4; }
}

.core-emblem-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px rgba(247, 208, 138, 0.85));
}

.core-emblem-icon svg {
  width: 100%;
  height: 100%;
}

/* Connecting Orbital Tracks SVG */
.orbital-tracks-svg {
  position: absolute;
  inset: 0;
  width: 540px;
  height: 540px;
  pointer-events: none;
  z-index: 2;
}

.track-spin-cw {
  transform-origin: 270px 270px;
  animation: spinTrack 60s linear infinite;
}

@keyframes spinTrack {
  100% { transform: rotate(360deg); }
}

.node-line {
  opacity: 0.55;
  stroke-width: 1.8;
  transition: opacity 0.4s ease, stroke-width 0.4s ease;
}

.node-line.active-line {
  opacity: 1;
  stroke-width: 3;
  filter: drop-shadow(0 0 12px rgba(247, 208, 138, 1));
}

/* 4 Circular Nodes */
.orbital-node {
  position: absolute;
  z-index: 6;
  width: 200px;
  height: 200px;
  transition: all 0.4s var(--ease-smooth);
  cursor: default;
}

.node-glass-ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  padding: 3px;
  background: rgba(28, 20, 23, 0.5);
  border: 2.5px solid #F7D08A;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 
    0 0 25px rgba(247, 208, 138, 0.65),
    inset 0 0 18px rgba(247, 208, 138, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: all 0.4s ease;
  animation: goldBlinkGlow 2.8s ease-in-out infinite;
}

/* Continuous Blinking Light Effect */
@keyframes goldBlinkGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(247, 208, 138, 0.5), inset 0 0 12px rgba(247, 208, 138, 0.3);
    border-color: rgba(247, 208, 138, 0.75);
  }
  50% {
    box-shadow: 0 0 45px rgba(247, 208, 138, 0.95), inset 0 0 25px rgba(255, 235, 170, 0.6), 0 0 65px rgba(247, 208, 138, 0.7);
    border-color: #FFF;
  }
}

.node-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* 4-Pointed Star Flare Sparkles on Circle Perimeter */
.star-flare {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 12;
  pointer-events: none;
  filter: drop-shadow(0 0 6px #F7D08A) drop-shadow(0 0 12px #FFF);
  animation: starBlinkGlitter 2s infinite ease-in-out;
}

.star-flare svg {
  width: 100%;
  height: 100%;
  display: block;
}

.star-flare.p-top { top: -9px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.star-flare.p-right { top: 50%; right: -9px; transform: translateY(-50%); animation-delay: 0.5s; }
.star-flare.p-bottom { bottom: -9px; left: 50%; transform: translateX(-50%); animation-delay: 1.0s; }
.star-flare.p-left { top: 50%; left: -9px; transform: translateY(-50%); animation-delay: 1.5s; }

@keyframes starBlinkGlitter {
  0%, 100% {
    transform: scale(0.4) rotate(0deg);
    opacity: 0.35;
    filter: drop-shadow(0 0 4px #F7D08A);
  }
  50% {
    transform: scale(1.4) rotate(45deg);
    opacity: 1;
    filter: drop-shadow(0 0 14px #FFF) drop-shadow(0 0 25px #F7D08A);
  }
}

.node-pulse-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2.5px solid var(--gold-champagne);
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  transition: all 0.4s ease;
}

/* Precise Enlarged Node Locations on 540px Stage Container */
.node-1 { top: 0px; left: 170px; }   /* Top 12 o'clock */
.node-2 { top: 170px; left: 340px; } /* Right 3 o'clock */
.node-3 { top: 340px; left: 170px; } /* Bottom 6 o'clock */
.node-4 { top: 170px; left: 0px; }   /* Left 9 o'clock */

/* Active Node Highlight */
.orbital-node.active .node-glass-ring {
  border-color: #FFF;
  transform: scale(1.08);
  box-shadow: 
    0 0 45px rgba(247, 208, 138, 1),
    0 0 70px rgba(255, 158, 187, 0.8),
    inset 0 0 30px rgba(247, 208, 138, 0.6);
}

.orbital-node.active .node-badge-num {
  background: linear-gradient(135deg, var(--rose-soft), var(--rose-vibrant));
  color: #FFF;
  box-shadow: 0 0 12px var(--rose-soft);
}

.orbital-node.active .node-pulse-glow {
  opacity: 1;
  transform: scale(1.1);
  animation: pulseNodeRing 2s infinite;
}

@keyframes pulseNodeRing {
  0% { transform: scale(1.05); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 0.2; }
  100% { transform: scale(1.05); opacity: 0.8; }
}

/* --------------------------------------------------------------------------
   7. Footer
   -------------------------------------------------------------------------- */
.app-footer {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 18px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: var(--text-cream);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-champagne);
}

.dot-sep {
  color: rgba(244, 212, 168, 0.4);
  font-size: 0.75rem;
}

.copyright-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   8. Responsive Layout Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .curved-glass-pane {
    aspect-ratio: auto;
    min-height: calc(100vh - 130px);
    background-size: cover;
    border-radius: 20px;
  }

  .glass-layout-grid {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    max-width: 520px;
    margin: 0 auto;
  }

  .wizard-pane {
    max-width: 100%;
    width: 100%;
  }

  .step-main-heading {
    font-size: 1.85rem;
  }
}

@media (max-width: 640px) {
  .top-nav {
    padding: 12px 16px;
  }

  .brand-title {
    font-size: 1.15rem;
    letter-spacing: 3px;
  }

  .curved-glass-pane {
    border-radius: 0;
    min-height: calc(100vh - 120px);
  }

  .glass-layout-grid {
    padding: 16px 14px;
  }

  .wizard-pane {
    padding: 6px;
    border-radius: 0;
    background: transparent;
    border: none;
  }

  .step-main-heading {
    font-size: 1.55rem;
  }

  .custom-radio-card {
    padding: 11px 14px;
  }

  .option-label {
    font-size: 0.88rem;
  }

  .btn-continue {
    padding: 12px 22px;
    font-size: 0.92rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

/* --------------------------------------------------------------------------
   9. Legal & Contact Pages Wide Centered Layouts
   -------------------------------------------------------------------------- */
.legal-stage-wrapper {
  position: relative;
  width: 92%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.legal-content-card {
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 10px 0;
  color: var(--text-main);
  line-height: 1.75;
}

.legal-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--gold-champagne);
  margin-bottom: 24px;
}

.legal-section {
  margin-bottom: 24px;
}

.legal-section h3 {
  font-family: var(--font-serif);
  color: var(--rose-soft);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.legal-section p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.contact-stage-wrapper {
  position: relative;
  width: 92%;
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.contact-card {
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 10px 0;
  color: var(--text-main);
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--gold-champagne);
  margin-bottom: 8px;
}

.contact-sub {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.98rem;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--rose-soft);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.btn-back-home:hover {
  color: var(--gold-champagne);
}
