/* ==========================================================================
   TANGLETRYST - TRANSPARENT IMAGE CONTAINER SHAPED INSIDE THE HEART SYMBOL
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Radiant Romance Light Palette */
  --bg-page: #fff5f7;
  --bg-gradient: linear-gradient(135deg, #fff7f9 0%, #fff0f3 40%, #fde2e4 70%, #ffcad4 100%);

  /* Red & Orange Scalloped Heart Accents */
  --heart-red: #ff3b30;
  --heart-orange: #ff7a00;
  --heart-gradient: linear-gradient(145deg, #e61d2b 0%, #ff3b30 45%, #ff6a00 85%, #ff8c00 100%);
  
  --rose-primary: #ff4d6d;
  --rose-glow: #ff758f;
  --rose-dark: #c9184a;
  --rose-deep: #800f2f;
  --rose-soft: #ffe4e8;
  --rose-light: #fff0f3;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-accent: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Text Colors */
  --text-main: #2d121d;
  --text-body: #4a2838;
  --text-muted: #7c5267;
  --text-subtle: #a37990;

  /* Radii & Shadows */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 9999px;

  --shadow-rose-cta: 0 12px 32px rgba(255, 59, 48, 0.42), 0 2px 8px rgba(201, 24, 74, 0.2);
  --shadow-heart: 0 30px 70px rgba(255, 59, 48, 0.4), 0 10px 30px rgba(255, 122, 0, 0.3);
  
  --border-rose: 1px solid rgba(255, 77, 109, 0.25);
  --border-active: 2px solid #ff4d6d;
}

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

html {
  font-size: 16px;
  background-color: var(--bg-page);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-gradient);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Floating Light Blobs */
body::before {
  content: '';
  position: fixed;
  top: -10vw;
  left: -10vw;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 117, 143, 0.28) 0%, rgba(255, 240, 243, 0) 70%);
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 12s infinite alternate ease-in-out;
}

body::after {
  content: '';
  position: fixed;
  bottom: -10vw;
  right: -10vw;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.22) 0%, rgba(255, 240, 243, 0) 70%);
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 15s infinite alternate-reverse ease-in-out;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(5vw, 4vw) scale(1.1); }
}

.app-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   HEADER NAVBAR
   ========================================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 3vw, 48px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 182, 193, 0.4);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(225, 75, 110, 0.05);
}

.nav-brand-left {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 6px 18px;
  background: #ffffff;
  border: 1px solid rgba(255, 77, 109, 0.25);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(255, 77, 109, 0.12);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.nav-brand-left:hover {
  transform: translateY(-2px);
  border-color: var(--rose-primary);
  box-shadow: 0 8px 22px rgba(255, 77, 109, 0.22);
}

.brand-logo-img {
  height: clamp(38px, 3.8vw, 54px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 77, 109, 0.25));
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
}

.brand-name-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  background: linear-gradient(135deg, #c9184a 0%, #ff4d6d 60%, #ff758f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-title-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.brand-name-centered {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--rose-dark);
}

.header-action {
  display: flex;
  align-items: center;
  z-index: 2;
}

.private-badge {
  font-size: clamp(0.72rem, 0.88vw, 0.84rem);
  font-weight: 700;
  color: var(--rose-dark);
  background: var(--rose-light);
  border: 1px solid rgba(255, 77, 109, 0.3);
  border-radius: var(--radius-pill);
  padding: 8px clamp(12px, 1.4vw, 18px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(255, 77, 109, 0.08);
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
  animation: pulseGreenDot 1.8s infinite alternate;
}

@keyframes pulseGreenDot {
  0% { opacity: 0.5; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.3); }
}

/* ==========================================================================
   SYMMETRICAL MAIN LAYOUT: FLOATING OPTIONS | CENTER SCALLOPED HEART
   ========================================================================== */
.symmetrical-hero-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px clamp(16px, 2.5vw, 36px) 48px;
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
  gap: 20px;
}

/* Top Question Title Banner */
.question-title-banner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 780px;
}

.question-title-text {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
}

.question-subtitle-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* 3-Column Symmetrical Grid */
.heart-wings-grid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  position: relative;
}

/* Options Wings */
.options-wing {
  flex: 0 1 clamp(230px, 22vw, 290px);
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wing-card-wrapper {
  width: 100%;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* CENTER COLUMN: GRAND ROMANCE PORTAL SYMBOL */
.center-heart-col {
  flex: 0 0 clamp(400px, 40vw, 520px);
  max-width: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.romance-portal-box {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 140px 140px 48px 48px;
  background: transparent !important;
  box-shadow: 0 25px 60px rgba(255, 59, 48, 0.38), 0 8px 24px rgba(255, 122, 0, 0.25);
  animation: pulseHeartFloat 4s ease-in-out infinite alternate;
  cursor: pointer;
  overflow: hidden;
}

@keyframes pulseHeartFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.portal-gradient-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
  border: 6px solid #ff3b30;
  box-shadow: inset 0 0 20px rgba(255, 59, 48, 0.2);
}

/* BIG SIZE LOGO BADGE NEAR THE PORTAL IMAGE */
.portal-big-logo-wrapper {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 77, 109, 0.35);
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.portal-big-logo-wrapper:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 14px 36px rgba(255, 59, 48, 0.38);
}

.portal-big-logo-img {
  height: clamp(48px, 4.5vw, 68px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(255, 77, 109, 0.3));
}

.hero-image-wrapper,
.inner-heart-image-wrapper,
.portal-image-wrapper {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 134px 134px 42px 42px !important;
}

.portal-user-img,
.hero-center-img,
.inner-heart-user-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  border-radius: inherit !important;
  transition: transform 0.5s ease;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  z-index: 1 !important;
}

.romance-portal-box:hover .portal-user-img {
  transform: scale(1.05);
}

.heart-placeholder-graphic {
  width: 100%;
  height: 100%;
  clip-path: url(#heartScallopClip);
  -webkit-clip-path: url(#heartScallopClip);
  background: linear-gradient(135deg, #fff0f3 0%, #ffccd5 50%, #ff4d6d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.placeholder-heart-icon {
  font-size: 2.8rem;
  color: #ff4d6d;
  animation: heartPulseFast 1.5s infinite alternate;
}

@keyframes heartPulseFast {
  0% { transform: scale(0.9); }
  100% { transform: scale(1.15); }
}

.placeholder-text-main {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-top: 6px;
}

.placeholder-text-sub {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 4px;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.heart-floating-tag {
  position: absolute;
  background: #ffffff;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 77, 109, 0.3);
  box-shadow: 0 8px 24px rgba(255, 59, 48, 0.2);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.tag-top-left {
  top: -12px;
  left: -12px;
}

.tag-top-right {
  top: -12px;
  right: -12px;
}

/* PORTAL NAV ARROWS */
.portal-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 77, 109, 0.3);
  color: var(--rose-dark);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 59, 48, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.portal-nav-arrow:hover {
  background: #ffffff;
  color: var(--rose-primary);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 10px 28px rgba(255, 59, 48, 0.38);
}

.portal-prev-arrow {
  left: 12px;
}

.portal-next-arrow {
  right: 12px;
}

/* PORTAL DOTS BAR */
.portal-dots-bar {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.portal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.3s ease;
}

.portal-dot:hover,
.portal-dot.active {
  background: #ffffff;
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

#userPhotoInput {
  display: none;
}

/* FLOATING OPTION PILLS */
.option-pill {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 77, 109, 0.28);
  border-radius: var(--radius-md);
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-body);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(255, 77, 109, 0.08);
}

.option-pill:hover {
  background: rgba(255, 255, 255, 1);
  border-color: var(--rose-primary);
  color: var(--rose-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(255, 77, 109, 0.22);
}

.option-pill.active {
  background: #ffffff;
  border: var(--border-active);
  color: var(--rose-dark);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.28);
}

.pill-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 77, 109, 0.35);
  background: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.option-pill.active .pill-dot {
  border-color: var(--rose-primary);
  background: var(--rose-primary);
}

.option-pill.active .pill-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.pill-label { flex: 1; }

.option-checkbox-pill { cursor: pointer; width: 100%; }
.option-checkbox-pill input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.pill-box {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 77, 109, 0.28); border-radius: var(--radius-md);
  transition: all 0.3s ease; box-shadow: 0 8px 24px rgba(255, 77, 109, 0.08);
}
.option-checkbox-pill:hover .pill-box {
  background: rgba(255, 255, 255, 1); border-color: var(--rose-primary);
  transform: translateY(-2px);
}
.option-checkbox-pill input:checked + .pill-box { background: #ffffff; border: var(--border-active); box-shadow: 0 10px 30px rgba(255, 59, 48, 0.28); }
.pill-text { font-size: 0.9rem; font-weight: 700; color: var(--text-body); }
.check-mark { font-size: 0.9rem; font-weight: 900; color: transparent; }
.option-checkbox-pill input:checked + .pill-box .check-mark { color: var(--rose-primary); }

/* ==========================================================================
   BELOW-HEART ACTION CONTROL & PROGRESS SECTION
   ========================================================================== */
.below-heart-section {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.quiz-progress-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.progress-step-pill {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: #ffffff;
  border: 1px solid rgba(255, 77, 109, 0.3);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(255, 77, 109, 0.1);
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 77, 109, 0.2);
  border-radius: var(--radius-pill);
  overflow: hidden;
  padding: 1px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff7a00 0%, #ff3b30 50%, #c9184a 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.5);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

/* BIG SIZE LOGO BADGE NEAR CONTINUE BUTTON */
.continue-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 77, 109, 0.35);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(255, 59, 48, 0.22);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.continue-logo-badge:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(255, 59, 48, 0.32);
}

.continue-logo-img {
  height: clamp(44px, 4vw, 62px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(255, 77, 109, 0.3));
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(14px, 1.4vw, 18px) clamp(36px, 3vw, 54px);
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, #ff3b30 0%, #c9184a 60%, #800f2f 100%);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: var(--shadow-rose-cta);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 59, 48, 0.45);
}

.btn-access-catalog {
  background: linear-gradient(135deg, #ff3b30 0%, #c9184a 50%, #ff7a00 100%) !important;
}

.btn-secondary-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(12px, 1.2vw, 15px) clamp(20px, 1.8vw, 28px);
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid rgba(255, 77, 109, 0.25);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.1vw, 0.95rem);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary-back:hover {
  background: var(--rose-soft);
  color: var(--rose-dark);
}

/* Step Card Switcher wrapper */
.quiz-step-view {
  display: none;
  width: 100%;
  animation: quizFadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.quiz-step-view.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.final-ready-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 77, 109, 0.3);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(255, 77, 109, 0.1);
}

.ready-check-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3b30 0%, #c9184a 100%);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(255, 59, 48, 0.35);
  flex-shrink: 0;
}

.ready-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-body);
}

.ready-text strong {
  color: var(--rose-dark);
}

/* ==========================================================================
   SECONDARY PAGES & FOOTER
   ========================================================================== */
.page-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px);
  max-width: 860px;
  margin: 36px auto 56px;
  box-shadow: 0 20px 50px rgba(225, 75, 110, 0.1);
  text-align: left;
  width: 92%;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--rose-dark);
  font-weight: 600;
  margin-bottom: 28px;
}

.policy-sections-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.policy-section {
  background: #ffffff;
  border: 1px solid rgba(255, 77, 109, 0.18);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(255, 77, 109, 0.05);
}

.policy-section h2 {
  font-family: var(--font-accent);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 8px;
}

.policy-section p {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-body);
}

.policy-list {
  margin-top: 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.policy-list li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.5;
}

.inline-link {
  color: var(--rose-primary);
  text-decoration: underline;
  font-weight: 700;
}

.inline-link:hover {
  color: var(--rose-dark);
}

.page-actions-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 24px;
}

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.92rem; font-weight: 700; color: var(--text-main); }
.form-input, .form-textarea {
  width: 100%; padding: 16px 20px; border: 1px solid rgba(255, 77, 109, 0.22);
  border-radius: var(--radius-md); font-family: var(--font-sans); font-size: 0.98rem;
  background: #ffffff; color: var(--text-main); outline: none; transition: all 0.3s ease;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--rose-primary);
  box-shadow: 0 0 14px rgba(255, 77, 109, 0.2);
}
.form-textarea { min-height: 145px; resize: vertical; }

.app-footer {
  margin-top: auto;
  padding: 32px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 182, 193, 0.4);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.footer-links a { color: var(--rose-dark); text-decoration: none; font-size: 0.92rem; font-weight: 700; }
.footer-links .sep { color: var(--rose-glow); }
.copyright { color: var(--text-muted); font-size: 0.85rem; font-weight: 600; }

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS (LAPTOPS, TABLETS & MOBILE)
   ========================================================================== */

/* Large Laptops (1281px - 1440px) */
@media (max-width: 1440px) {
  .symmetrical-hero-layout {
    padding: 18px 24px 44px;
    gap: 18px;
  }
  .center-heart-col {
    flex: 0 0 clamp(380px, 36vw, 480px);
    max-width: 480px;
  }
  .romance-portal-box {
    max-width: 430px;
  }
  .options-wing {
    flex: 0 1 clamp(210px, 18vw, 260px);
    max-width: 270px;
  }
}

/* Medium & Compact Laptops (1025px - 1280px) */
@media (max-width: 1280px) {
  .navbar {
    padding: 12px 24px;
  }
  .symmetrical-hero-layout {
    padding: 14px 20px 36px;
    gap: 14px;
  }
  .question-title-text {
    font-size: 1.65rem;
  }
  .question-subtitle-text {
    font-size: 0.88rem;
  }
  .center-heart-col {
    flex: 0 0 clamp(340px, 34vw, 430px);
    max-width: 430px;
  }
  .romance-portal-box {
    max-width: 390px;
  }
  .options-wing {
    flex: 0 1 clamp(190px, 17vw, 240px);
    max-width: 250px;
  }
  .option-pill,
  .pill-box {
    padding: 11px 14px;
    font-size: 0.84rem;
  }
  .private-badge {
    padding: 6px 14px;
    font-size: 0.76rem;
  }
}

/* Tablets & iPads (768px - 1024px) */
@media (max-width: 1024px) {
  .navbar {
    padding: 12px 20px;
  }
  .symmetrical-hero-layout {
    padding: 16px 18px 36px;
    gap: 20px;
  }
  .heart-wings-grid {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .center-heart-col {
    flex: 0 0 auto;
    width: 100%;
    max-width: 440px;
  }
  .romance-portal-box {
    max-width: 420px;
  }
  .options-wing {
    flex: 0 0 auto;
    width: 100%;
    max-width: 440px;
  }
  .option-pill,
  .pill-box {
    padding: 13px 18px;
    font-size: 0.9rem;
  }
  .private-badge {
    display: none;
  }
}

/* Small Tablets & Mobile Devices (< 768px) */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 14px;
  }
  .brand-logo-img {
    height: 38px;
  }
  .brand-name-centered {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  .question-title-banner {
    gap: 4px;
  }
  .question-title-text {
    font-size: 1.35rem;
  }
  .question-subtitle-text {
    font-size: 0.84rem;
  }
  .romance-portal-box {
    max-width: 330px;
    border-radius: 100px 100px 36px 36px;
  }
  .portal-image-wrapper {
    border-radius: 96px 96px 32px 32px !important;
  }
  .below-heart-section {
    max-width: 100%;
  }
  .action-buttons-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-cta,
  .btn-secondary-back {
    width: 100%;
  }
}