/* ============================================
   CSS VARIABLES & THEME
   ============================================ */
:root {
  --pk-accent: #c53678;
  --pk-accent-dark: #a92f67;
  --pk-text: #2c2230;
  --pk-text-soft: #5b5560;
  --pk-muted: #8a8390;
  --pk-bg-soft: #fcf7f8;
  --pk-bg-light: #f9f5f6;
  --pk-border: rgba(197, 54, 120, 0.1);
  --pk-border-strong: rgba(197, 54, 120, 0.18);
  --pk-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
  --pk-shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* ============================================
   BASE ELEMENTS
   ============================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--pk-text);
  background: #ffffff;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--pk-text);
  line-height: 1.2;
}

/* Body paragraph links */
p a {
  color: var(--pk-accent);
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

p a:hover {
  color: var(--pk-accent-dark);
  opacity: 0.8;
  text-decoration: underline;
}

/* Text emphasis */
.text-emphasis {
  font-weight: 500;
  color: #c53678;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  backdrop-filter: blur(8px);
}

#mainNavbar {
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* KEZDŐ ÁLLAPOT */
.navbar-top {
  background-color: transparent;
}

.navbar-top .nav-link,
.navbar-top .navbar-brand {
  color: #fff;
}

/* SCROLL UTÁN */
.navbar-scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-brand {
  color: #333;
}

.nav-link {
  font-weight: 500;
  color: #444;
}

.nav-link:hover {
  color: #000;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
}

/* ============================================
   SECTIONS & HERO
   ============================================ */
.section {
  padding: 4.5rem 0;
}

.hero {
  background: linear-gradient(135deg, #fff7f5 0%, #fdecef 50%, #ffffff 100%);
  text-align: center;
  padding: 120px 20px;
}

.hero.cards-hero {
  padding: 5.5rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fcf7f8 100%);
}

.hero.cards-hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero.cards-hero .lead {
  font-size: 1.05rem;
  color: var(--pk-text-soft);
  max-width: 760px;
  margin-inline: auto;
}

.bg-light {
  background-color: var(--pk-bg-light) !important;
}

/* ============================================
   CARDS & QUESTIONS
   ============================================ */
.cards-section {
  padding-top: 3.5rem;
}

.cards-section-label {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pk-accent);
}

.cards-filter-wrap {
  gap: 0.75rem;
}

.category-chip {
  border-radius: 999px;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(197, 54, 120, 0.18);
  background: #ffffff;
  color: var(--pk-text-soft);
  font-weight: 500;
  transition: all 0.25s ease;
}

.category-chip:hover,
.category-chip.active {
  background: rgba(197, 54, 120, 0.08);
  border-color: rgba(197, 54, 120, 0.32);
  color: var(--pk-accent);
}

.cards-meta {
  color: var(--pk-muted);
  font-weight: 600;
}

.card-stage {
  perspective: 1200px;
}

.question-card {
  min-height: 420px;
  cursor: pointer;
}

.question-card-inner {
  position: relative;
  width: 100%;
  min-height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.65s ease;
}

.question-card.is-flipped .question-card-inner {
  transform: rotateY(180deg);
}

.question-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 420px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.question-card-back {
  transform: rotateY(180deg);
}

.card-soft {
  background: #ffffff;
  border: 1px solid var(--pk-border);
  border-radius: 28px;
  box-shadow: var(--pk-shadow);
  padding: 1.75rem;
  width: 100%;
}

.question-card-face.card-soft {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.question-card-top,
.question-card-bottom {
  min-height: 32px;
}

.question-card-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 1rem 0;
}

.question-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(197, 54, 120, 0.08);
  color: var(--pk-accent);
}

.question-badge.intimitas,
.question-badge.kommunikacio,
.question-badge.moka,
.question-badge.onismeret {
  background: rgba(197, 54, 120, 0.08);
  color: var(--pk-accent);
}

.question-text {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.45;
  color: var(--pk-text);
  margin: 0;
  max-width: 700px;
}

.question-hint {
  font-size: 0.95rem;
  color: var(--pk-muted);
}

.card-start-button {
  border: 0;
  background: transparent;
  color: var(--pk-accent);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0;
  transition: opacity 0.2s ease;
}

.card-start-button:hover {
  opacity: 0.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  background: var(--pk-accent);
  border: 1px solid var(--pk-accent);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 24px rgba(197, 54, 120, 0.16);
}

.btn-soft:hover,
.btn-soft:focus {
  background: var(--pk-accent-dark);
  border-color: var(--pk-accent-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  background: #ffffff;
  border: 1px solid rgba(197, 54, 120, 0.22);
  color: var(--pk-accent);
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-outline-soft:hover,
.btn-outline-soft:focus {
  background: rgba(197, 54, 120, 0.06);
  border-color: rgba(197, 54, 120, 0.4);
  color: var(--pk-accent-dark);
  transform: translateY(-1px);
}

/* ============================================
   PAYWALL
   ============================================ */
.paywall-box {
  border-radius: 28px;
  padding: 2.4rem 1.5rem;
}

/* ============================================
   FACEBOOK SUPPORT SECTION
   ============================================ */
#socialSupportSection {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

#socialSupportSection.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-support-box {
  max-width: 820px;
}

.social-support-eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(197, 54, 120, 0.08);
  color: var(--pk-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-support-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.social-support-text {
  max-width: 700px;
  margin: 0 auto;
  color: var(--pk-text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.social-btn {
  min-width: 220px;
}

.social-support-note {
  font-size: 0.95rem;
  color: var(--pk-muted);
}

/* ============================================
   ICONS & MISC
   ============================================ */
.icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #c53678;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero.cards-hero {
    padding: 4.5rem 0 3.5rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .question-card,
  .question-card-inner,
  .question-card-face {
    min-height: 380px;
  }

  .card-soft {
    padding: 1.35rem;
  }

  .social-support-box,
  .paywall-box {
    padding: 2rem 1.2rem;
  }

  .social-btn {
    width: 100%;
  }
}

.btn-soft {
  background-color: #ff5841;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
}

.btn-soft:hover {
  background-color: #e14b36;
}

.bg-light {
  background-color: #fff5f3 !important;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: #2b2b2b;
}

p {
  line-height: 1.7;
}

input.form-control {
  border-radius: 12px;
  border: 1px solid #f3d6db;
  padding: 12px;
}

/* MITOL MAS SECTION */
.feature-card-title {
  color: #c53678;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* =========================
   CARDS PAGE
========================= */

.cards-hero {
  padding: 120px 20px 90px;
}

.cards-section {
  background-color: #ffffff;
}

.cards-section-label {
  color: #c53678;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.cards-filter-wrap {
  margin-bottom: 8px;
}

.category-chip {
  background-color: #fff5f3;
  border: 1px solid #f3d6db;
  color: #2b2b2b;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.category-chip:hover {
  background-color: #fdecef;
  border-color: #e8c5cd;
  color: #2b2b2b;
}

.category-chip.active {
  background-color: #c53678;
  border-color: #c53678;
  color: #ffffff;
}

.cards-meta {
  color: #6b4f4f;
  font-weight: 500;
}

.card-stage {
  perspective: 1400px;
}

.question-card {
  width: 100%;
  min-height: 420px;
  cursor: default;
}

.question-card-inner {
  position: relative;
  width: 100%;
  min-height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.65s ease;
}

.question-card.is-flipped .question-card-inner {
  transform: rotateY(180deg);
}

.question-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 420px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fff3f1 100%);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-stage {
  perspective: 1400px;
  margin-top: 10px;
}

.question-card-back {
  transform: rotateY(180deg);
}

.question-card-top {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 38px;
}

.question-card-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 8px;
}

.question-card-bottom {
  text-align: center;
}

.card-start-button {
  background: transparent;
  border: none;
  color: #2b2b2b;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.35;
  max-width: 640px;
}

.card-start-button:hover {
  color: #c53678;
}

.question-text {
  font-family: "Playfair Display", serif;
  color: #2b2b2b;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.45;
  margin: 0;
  max-width: 700px;
}

/* =========================
   PHP APP PAGES
========================= */

.app-body {
  background: #ffffff;
}

.app-navbar {
  border-bottom: 1px solid rgba(197, 54, 120, 0.1);
}

.app-nav-btn {
  padding: 0.55rem 1rem;
}

.app-hero {
  padding: 5rem 0 3.5rem;
}

.app-form-card {
  max-width: 100%;
}

.app-form-card .form-label,
.app-admin-panel .form-label {
  font-weight: 600;
  color: var(--pk-text-soft);
}

.form-control,
.form-select {
  border-radius: 12px;
  border-color: #f3d6db;
  padding: 0.75rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(197, 54, 120, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(197, 54, 120, 0.1);
}

.app-alert,
.alert {
  border-radius: 16px;
  border-width: 1px;
}

.app-price {
  color: var(--pk-accent);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.app-table {
  --bs-table-striped-bg: rgba(197, 54, 120, 0.035);
}

.app-table th {
  color: var(--pk-text-soft);
  font-weight: 600;
  white-space: nowrap;
}

.app-table td,
.app-table th {
  border-color: rgba(197, 54, 120, 0.1);
  padding: 1rem 0.75rem;
}

.app-badge {
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-weight: 600;
}

.app-badge-success {
  background: rgba(25, 135, 84, 0.1);
  color: #146c43;
}

.app-badge-muted {
  background: rgba(197, 54, 120, 0.08);
  color: var(--pk-accent);
}

.premium-card {
  background: linear-gradient(180deg, #ffffff 0%, #fff5f3 100%);
}

.app-admin-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff9f8 100%);
}

.app-admin-panel {
  border-radius: 18px;
  box-shadow: var(--pk-shadow-soft);
}

.app-social-link {
  color: #ff5841;
  font-size: 1.25rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.app-social-link:hover {
  color: #e14b36;
  opacity: 0.85;
}

.app-footer-links a {
  color: var(--pk-text-soft);
  text-decoration: none;
}

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

@media (max-width: 768px) {
  .app-hero {
    padding: 4rem 0 3rem;
  }
}

.question-hint {
  color: #7b6a6a;
  font-size: 0.95rem;
  display: inline-block;
}

.question-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.question-badge.intimitas {
  background-color: #fdecef;
  color: #c53678;
}

.question-badge.kommunikacio {
  background-color: #fff5f3;
  color: #6b4f4f;
}

.question-badge.moka {
  background-color: #f5ece8;
  color: #8b5e5e;
}

.question-badge.onismeret {
  background-color: #f7eef3;
  color: #9c4b73;
}

.btn-outline-soft {
  background-color: transparent;
  color: #ff5841;
  border: 1px solid #ff5841;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
}

.btn-outline-soft:hover {
  background-color: #ff5841;
  color: #ffffff;
}

.paywall-box {
  background: linear-gradient(135deg, #fff7f5 0%, #fdecef 100%);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.paywall-box h2 {
  margin-bottom: 12px;
}

.paywall-box p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .cards-hero {
    padding: 100px 20px 70px;
  }

  .question-card,
  .question-card-inner,
  .question-card-face {
    min-height: 360px;
  }

  .question-text,
  .card-start-button {
    font-size: 1.5rem;
  }

  .category-chip {
    width: auto;
  }
}

/* ============================================
   KERDESEK PAROKNAK - LANDING PAGE
   ============================================ */

.article-hero {
  background: linear-gradient(135deg, #fff7f5 0%, #fdecef 50%, #ffffff 100%);
  text-align: center;
  padding: 120px 20px 95px;
}

.article-hero .eyebrow,
.cta-eyebrow,
.sample-label {
  display: inline-block;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(197, 54, 120, 0.08);
  color: var(--pk-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-hero h1 {
  font-size: clamp(2.2rem, 4.1vw, 3.7rem);
  max-width: 920px;
  margin: 0 auto 1.4rem;
}

.article-hero .lead {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--pk-text-soft);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.article-copy {
  max-width: 860px;
  margin: 0 auto;
}

.article-copy h2 {
  margin-bottom: 1.2rem;
}

.article-copy p + p {
  margin-top: 1rem;
}

.article-copy a {
  color: var(--pk-accent);
}

.article-copy a:hover,
.article-copy a:focus {
  color: var(--pk-accent-dark);
}

.article-sources {
  color: var(--pk-text-soft);
  font-size: 0.85rem;
  line-height: 1.55;
}

.article-sources-title {
  margin-bottom: 0.75rem;
  color: var(--pk-text-soft);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.article-sources ul {
  margin-bottom: 0;
  padding-left: 1.15rem;
}

.article-sources li + li {
  margin-top: 0.3rem;
}

.article-intro-box,
.cta-panel,
.faq-item,
.sample-question,
.use-case-box {
  background: #ffffff;
  border: 1px solid var(--pk-border);
  border-radius: 28px;
  box-shadow: var(--pk-shadow-soft);
}

.article-intro-box {
  padding: 2rem;
}

.cta-panel {
  padding: 2.25rem 1.8rem;
  text-align: center;
  background: linear-gradient(135deg, #fff7f5 0%, #fdecef 100%);
}

.cta-panel p {
  max-width: 720px;
  margin: 0.9rem auto 0;
  color: var(--pk-text-soft);
}

.reason-card {
  height: 100%;
}

.reason-card p,
.use-case-box p,
.faq-item p,
.sample-question p {
  color: var(--pk-text-soft);
  margin-bottom: 0;
}

.sample-question {
  padding: 1.5rem;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fff3f1 100%);
}

.sample-question p {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--pk-text);
}

.use-case-box,
.faq-item {
  padding: 1.6rem;
  height: 100%;
}

.article-list {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--pk-text-soft);
}

.article-list li + li {
  margin-top: 0.65rem;
}

.final-cta {
  text-align: center;
}

.final-cta .cta-panel {
  padding: 2.6rem 1.8rem;
}

@media (max-width: 767.98px) {
  .article-hero {
    padding: 105px 20px 80px;
  }

  .article-intro-box,
  .cta-panel,
  .sample-question,
  .use-case-box,
  .faq-item {
    border-radius: 22px;
  }
}

/* =========================
   COMPACT APP OVERRIDES
========================= */

.app-page {
  min-height: 62vh;
  background: #ffffff;
}

.app-content {
  padding: 2.25rem 0 3rem;
}

.app-page-header {
  margin-bottom: 1.25rem;
}

.app-page-header h1,
.app-page-header h2 {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  font-weight: 650;
  letter-spacing: 0;
}

.app-page-header p {
  color: #6b7280;
}

.app-navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.app-page .card-soft,
.app-admin-panel {
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  background: #ffffff;
  padding: 1.35rem;
}

.app-page .btn-soft,
.app-admin-section .btn-soft,
.app-navbar .btn-soft {
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  background: #374151;
  border: 1px solid #374151;
  color: #ffffff;
  box-shadow: none;
  font-weight: 600;
}

.app-page .btn-soft:hover,
.app-page .btn-soft:focus,
.app-admin-section .btn-soft:hover,
.app-admin-section .btn-soft:focus,
.app-navbar .btn-soft:hover,
.app-navbar .btn-soft:focus {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  transform: none;
}

.app-page .btn-outline-soft,
.app-admin-section .btn-outline-soft,
.app-navbar .btn-outline-soft {
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #374151;
  box-shadow: none;
  font-weight: 600;
}

.app-page .btn-outline-soft:hover,
.app-page .btn-outline-soft:focus,
.app-admin-section .btn-outline-soft:hover,
.app-admin-section .btn-outline-soft:focus,
.app-navbar .btn-outline-soft:hover,
.app-navbar .btn-outline-soft:focus {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #111827;
  transform: none;
}

.app-nav-btn {
  padding: 0.35rem 0.65rem;
}

.app-form-card .form-label,
.app-admin-panel .form-label {
  color: #374151;
  font-size: 0.9rem;
  font-weight: 600;
}

.app-page .form-control,
.app-page .form-select,
.app-admin-section .form-control,
.app-admin-section .form-select {
  border-radius: 8px;
  border-color: #d1d5db;
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
}

.app-page .form-control:focus,
.app-page .form-select:focus,
.app-admin-section .form-control:focus,
.app-admin-section .form-select:focus {
  border-color: #6b7280;
  box-shadow: 0 0 0 0.18rem rgba(107, 114, 128, 0.14);
}

.app-alert,
.app-page .alert {
  border-radius: 10px;
}

.app-price {
  color: #1f2937;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.app-table th {
  color: #4b5563;
  font-size: 0.88rem;
}

.app-table td,
.app-table th {
  border-color: #e5e7eb;
  padding: 0.78rem 0.7rem;
}

.app-badge {
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  font-size: 0.78rem;
}

.app-badge-success {
  background: #ecfdf3;
  color: #027a48;
}

.app-badge-muted {
  background: #f3f4f6;
  color: #4b5563;
}

.app-access-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: #f3f4f6;
  color: #374151;
  flex: 0 0 auto;
}

.premium-card {
  background: #ffffff;
}

.premium-card .question-badge {
  background: #f3f4f6;
  color: #4b5563;
}

.app-admin-section {
  background: #ffffff;
  padding: 2.25rem 0 3rem;
}

@media (max-width: 768px) {
  .app-content,
  .app-admin-section {
    padding: 1.5rem 0 2.25rem;
  }
}

/* =========================
   PUBLIC PACKAGE PAGE
========================= */

.package-hero {
  padding-bottom: 3.25rem;
}

.package-section-note {
  max-width: 36rem;
  color: var(--package-muted) !important;
  font-size: 1rem;
  line-height: 1.7;
}

.package-section {
  --package-ink: #2f2d2a;
  --package-muted: #746f72;
  --package-coral: #cf7c66;
  --package-coral-dark: #b96755;
  --package-coral-soft: #f0d5ca;
  --package-paper: #fbf6ec;
  --package-paper-light: #fffaf2;
  --package-sage: #99a58b;
  --package-line: rgba(78, 66, 58, 0.1);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 12%, rgba(207, 124, 102, 0.08), transparent 26rem),
    radial-gradient(circle at 8% 80%, rgba(153, 165, 139, 0.08), transparent 22rem),
    linear-gradient(180deg, #fbf7ef 0%, #fffaf3 48%, #fbf7ef 100%);
}

.package-section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 5rem;
  text-align: center;
}

.package-impression {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid rgba(85, 68, 57, 0.07);
  border-radius: clamp(1.6rem, 3vw, 2.4rem);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(249, 241, 229, 0.8));
  box-shadow:
    0 1.5rem 4rem rgba(87, 64, 49, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.package-section-label {
  margin-bottom: 1rem;
  color: var(--package-coral-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.package-section-title {
  margin-bottom: 1.35rem;
  color: var(--package-ink);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.package-section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 0 1.35rem;
}

.package-section-ornament span {
  width: 2.8rem;
  height: 1px;
  background: var(--package-line);
}

.package-section-ornament i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--package-coral);
}

.package-impression-image-link,
.package-impression-title a {
  color: inherit;
  text-decoration: none;
}

.package-impression-image-link:focus-visible,
.package-impression-title a:focus-visible {
  border-radius: 1.25rem;
  outline: 3px solid rgba(185, 103, 85, 0.5);
  outline-offset: 0.35rem;
}

.package-impression-media {
  position: relative;
  width: min(100%, 330px);
}

.package-impression-media::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -9%;
  width: 82%;
  height: 86%;
  border-radius: 48% 52% 44% 56% / 54% 42% 58% 46%;
  background: rgba(240, 213, 202, 0.55);
  content: "";
}

.package-impression-image {
  aspect-ratio: 2 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 1.25rem 2.8rem rgba(72, 54, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-impression-image-link:hover .package-impression-image {
  box-shadow: 0 1.55rem 3.2rem rgba(72, 54, 42, 0.19);
  transform: translateY(-4px) rotate(-0.25deg);
}

.package-impression-image-missing {
  display: grid;
  aspect-ratio: 2 / 3;
  place-items: center;
  padding: 1rem;
  width: 100%;
  border-radius: 1.25rem;
  color: var(--package-ink);
  background: var(--package-paper);
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
}

.package-impression-title {
  margin: 0 0 1rem;
  color: var(--package-ink);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.06;
}

.package-impression-title a:hover {
  color: var(--package-coral-dark);
}

.package-product-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: var(--package-coral-dark);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.package-product-kicker span {
  width: 2.6rem;
  height: 1px;
  background: var(--package-coral);
}

.package-impression-description {
  max-width: 38rem;
  margin-bottom: 1.5rem;
  color: #6d686b;
  font-size: 1.02rem;
  line-height: 1.78;
}

.package-impression-features {
  margin: 0 0 1.5rem;
  border-top: 1px solid var(--package-line);
  border-bottom: 1px solid var(--package-line);
  color: var(--package-muted);
  font-size: 0.93rem;
}

.package-impression-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 0;
}

.package-impression-features li + li {
  border-top: 1px dashed rgba(78, 66, 58, 0.14);
}

.package-impression-features i {
  display: inline-grid;
  flex: 0 0 auto;
  width: 2.05rem;
  height: 2.05rem;
  place-items: center;
  border-radius: 50%;
  color: var(--package-coral-dark);
  background: var(--package-coral-soft);
  font-size: 0.95rem;
}

.package-price-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(185, 103, 85, 0.14);
  border-radius: 1rem;
  background: rgba(255, 250, 243, 0.7);
}

.package-price-regular {
  color: var(--package-muted);
  font-size: 0.88rem;
  text-decoration: line-through;
}

.package-price-divider {
  width: 1px;
  height: 1.8rem;
  background: var(--package-line);
}

.package-price {
  color: var(--package-coral-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
}

.package-discount-badge {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 50%;
  color: #fffaf3;
  background: var(--package-coral-dark);
  font-size: 0.72rem;
  font-weight: 600;
}

.package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.package-purchase-form {
  display: grid;
}

.package-action-primary,
.package-action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.package-action-primary {
  border-color: var(--package-coral);
  color: #fffaf3;
  background: linear-gradient(180deg, #d98a73 0%, #cb7863 100%);
  box-shadow: 0 0.6rem 1.4rem rgba(185, 103, 85, 0.2);
}

.package-action-primary:hover,
.package-action-primary:focus-visible {
  border-color: var(--package-coral-dark);
  color: #fffaf3;
  background: var(--package-coral-dark);
  box-shadow: 0 0.75rem 1.6rem rgba(185, 103, 85, 0.24);
  transform: translateY(-2px);
}

.package-action-primary.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.package-action-secondary {
  border: 1px solid rgba(185, 103, 85, 0.58);
  color: var(--package-coral-dark);
  background: rgba(255, 250, 243, 0.55);
}

.package-action-secondary:hover,
.package-action-secondary:focus-visible {
  border-color: var(--package-coral-dark);
  color: var(--package-coral-dark);
  background: rgba(240, 213, 202, 0.5);
  transform: translateY(-2px);
}

.package-access-note {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
  color: #77866d;
  font-size: 0.76rem;
  line-height: 1.4;
}

.package-access-note span {
  width: 1.3rem;
  height: 1px;
  background: rgba(119, 134, 109, 0.45);
}

@media (max-width: 767.98px) {
  .package-section-heading {
    margin-bottom: 3.5rem;
    text-align: left;
  }

  .package-impression {
    padding: 1.25rem;
  }

  .package-section-ornament {
    justify-content: flex-start;
  }

  .package-impression-media {
    width: min(100%, 300px);
  }

  .package-price-panel {
    width: 100%;
  }

  .package-actions,
  .package-purchase-form,
  .package-action-primary,
  .package-action-secondary {
    width: 100%;
  }

  .package-access-note {
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-impression-image,
  .package-action-primary,
  .package-action-secondary {
    transition: none;
  }
}
/* =========================
   HOMEPAGE – WARM EDITORIAL REDESIGN
========================= */
.home-page{--ink:#302d2a;--muted:#716c69;--coral:#ca7762;--dark:#ad5e4c;--sage:#96a28a;--paper:#fbf6ed;color:var(--ink);overflow:hidden}.home-page h1,.home-page h2,.home-page h3{color:var(--ink)}
.home-hero{padding:clamp(5rem,9vw,8rem) 0;background:radial-gradient(circle at 88% 18%,rgba(202,119,98,.13),transparent 28rem),radial-gradient(circle at 8% 88%,rgba(150,162,138,.12),transparent 24rem),linear-gradient(135deg,#fbf6ed,#fffaf5 58%,#f8efe4)}
.home-hero h1{max-width:12ch;margin:0 0 1.5rem;font-size:clamp(3.25rem,6.6vw,6rem);line-height:.98;letter-spacing:-.04em}.home-eyebrow{margin-bottom:1rem;color:var(--dark);font-size:.75rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase}.home-lead{max-width:39rem;margin-bottom:2rem;color:#5f5a57;font-size:clamp(1.08rem,1.7vw,1.28rem);line-height:1.75}
.home-actions,.home-trust{display:flex;flex-wrap:wrap;align-items:center;gap:1rem 1.35rem}.home-actions a:not(.btn),.home-link{color:var(--dark);font-weight:500;text-decoration:none}.home-btn{padding:.82rem 1.35rem;border:1px solid var(--coral);border-radius:999px;color:#fffaf3;background:linear-gradient(#d78973,var(--coral));box-shadow:0 .75rem 1.7rem rgba(173,94,76,.2)}.home-btn:hover{color:#fff;background:var(--dark);transform:translateY(-2px)}
.home-trust{margin:2.4rem 0 0;color:var(--muted);font-size:.85rem}.home-trust li{display:flex;gap:.45rem}.home-trust i{color:var(--sage)}
.home-stack{position:relative;width:min(100%,34rem);height:clamp(30rem,49vw,42rem);margin:auto}.home-stack img{position:absolute;top:50%;left:50%;display:block;width:min(48%,15.5rem);height:auto;aspect-ratio:2/3;border-radius:1.35rem;object-fit:contain;box-shadow:0 2rem 4rem rgba(70,48,38,.2)}.stack-a{transform:translate(-92%,-50%) rotate(-12deg)}.stack-b{transform:translate(-9%,-52%) rotate(10deg)}.stack-c{z-index:2;transform:translate(-50%,-47%) rotate(-1deg)}
.home-section{padding:clamp(5rem,9vw,8.5rem) 0}.home-photo{display:block;width:100%;height:auto;aspect-ratio:800/533;object-fit:contain}.home-section h2,.home-how h2{margin-bottom:1.5rem;font-size:clamp(2.5rem,4.6vw,4.25rem);line-height:1.05;letter-spacing:-.03em}.home-section p{color:var(--muted);line-height:1.8}
.home-packages{background:radial-gradient(circle at 92% 8%,rgba(202,119,98,.09),transparent 25rem),var(--paper)}.home-heading{max-width:48rem;margin:0 auto clamp(3rem,6vw,5rem)}.home-heading h2{font-size:clamp(2.7rem,5.2vw,4.8rem)}
.home-package-card{display:grid;grid-template-columns:minmax(8rem,36%) 1fr;gap:1.3rem;width:100%;padding:1.25rem;border:1px solid rgba(90,67,53,.08);border-radius:1.7rem;color:inherit;background:rgba(255,252,247,.8);box-shadow:0 1rem 2.8rem rgba(77,57,45,.06);text-decoration:none;transition:.25s}.home-package-card:hover{color:inherit;background:#fffdf8;transform:translateY(-4px);box-shadow:0 1.4rem 3.2rem rgba(77,57,45,.1)}.home-package-card img{display:block;align-self:start;width:100%;height:auto;min-height:0;aspect-ratio:2/3;border-radius:1rem;object-fit:contain;box-shadow:0 .8rem 1.6rem rgba(70,52,41,.14)}.home-package-card small{color:var(--dark);font-weight:600;letter-spacing:.08em;text-transform:uppercase}.home-package-card h3{margin:.65rem 0;font-size:clamp(1.35rem,2.2vw,1.8rem);line-height:1.12}.home-package-card p{font-size:.9rem;line-height:1.65}.home-package-card span{color:var(--dark);font-weight:600}
.home-how{background:#fff}.home-steps li{display:grid;grid-template-columns:4rem 1fr;gap:1rem;padding:0 0 2rem;border-bottom:1px solid rgba(72,61,54,.12)}.home-steps li+li{padding-top:2rem}.home-steps>li>span{color:var(--coral);font-family:"Playfair Display",serif;font-size:1.5rem}.home-steps h3{font-size:1.55rem}.home-steps p{margin:0}
.home-values{background:linear-gradient(#fbf6ed,#fffaf4)}.home-value{height:100%;padding:1.5rem 1rem 1.5rem 0;border-top:1px solid rgba(72,61,54,.15)}.home-value h3{font-size:1.7rem}
.home-final{padding:clamp(4.5rem,8vw,7rem) 0;background:#fff}.home-final .container>div{padding:clamp(2.5rem,7vw,5.5rem);border-radius:clamp(1.5rem,4vw,3rem);background:radial-gradient(circle at 86% 20%,rgba(202,119,98,.15),transparent 20rem),linear-gradient(135deg,#f5eadd,#fcf7ef);text-align:center}.home-final h2{max-width:17ch;margin:0 auto 1rem;font-size:clamp(2.5rem,5vw,4.7rem);line-height:1.04}.home-final p:not(.home-eyebrow){max-width:38rem;margin:0 auto 1.8rem;color:var(--muted)}
@media(min-width:1200px){.home-packages .col-xl-4:nth-child(4){margin-left:16.666667%}}@media(max-width:991.98px){.home-hero{text-align:center}.home-hero h1,.home-lead{margin-left:auto;margin-right:auto}.home-actions,.home-trust{justify-content:center}}@media(max-width:575.98px){.home-hero{padding-top:3.8rem}.home-hero h1{font-size:clamp(2.8rem,15vw,4rem)}.home-actions{align-items:stretch;flex-direction:column}.home-btn{width:100%}.home-stack{height:28rem}.home-package-card{grid-template-columns:7.2rem 1fr;gap:1rem;padding:1rem}.home-package-card img{min-height:0}.home-package-card p{font-size:.84rem}.home-steps li{grid-template-columns:3.2rem 1fr}}@media(prefers-reduced-motion:reduce){.home-btn,.home-package-card{transition:none}}
