/* ============================================
   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", 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;

  /* 🔥 ÚJ – enyhén erősebb háttér */
  background: linear-gradient(180deg, #ffffff 0%, #fff3f1 100%);

  /* 🔥 kicsit erősebb shadow */
  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-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: 440px;
}

.package-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
  opacity: 1 !important;
}

.package-card-featured {
  border-color: rgba(197, 54, 120, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #fff5f3 100%);
}

.package-card-title {
  color: var(--pk-text);
}

.package-card-description {
  min-height: 0;
}

.package-price {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--pk-text);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .package-card-description {
    min-height: 0;
  }
}

/* Online kérdéskártya – kártyalap hangulat erősítése */

.card-stage {
  max-width: 560px;
  margin: 0 auto;
  perspective: 1200px;
}

.question-card {
  position: relative;
  width: 100%;
  min-height: 760px;
  cursor: pointer;
}

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

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

.question-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
  border-radius: 28px;
  padding: 34px 34px 126px;
  overflow: hidden;
}

.question-card-front,
.question-card-back {
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 88, 65, 0.08),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(197, 54, 120, 0.08),
      transparent 36%
    ),
    linear-gradient(145deg, #fffdfd 0%, #fff7f8 100%);
  border: 1px solid rgba(197, 54, 120, 0.18);
  box-shadow:
    0 24px 55px rgba(80, 58, 65, 0.13),
    0 8px 18px rgba(197, 54, 120, 0.08);
}

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

/* Belső kártyaszegély */
.question-card-face::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(197, 54, 120, 0.16);
  border-radius: 22px;
  pointer-events: none;
}

/* Finom dekorpontok, hogy ne legyen üres a nagy felület */
.question-card-face::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 88, 65, 0.08);
  pointer-events: none;
}

.question-card-top,
.question-card-body,
.question-card-bottom {
  position: relative;
  z-index: 1;
}

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

.card-start-button {
  border: 0;
  background: transparent;
  color: #2f2f2f;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 600;
  line-height: 1.18;
  max-width: 430px;
  margin: 0 auto;
}

.question-text {
  color: #2f2f2f;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.22;
  max-width: 440px;
  margin: 0 auto;
}

.question-hint {
  display: block;
  color: rgba(70, 54, 61, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}

.question-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #7a4f5c;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(197, 54, 120, 0.16);
  box-shadow: 0 6px 18px rgba(80, 58, 65, 0.06);
}

.question-card:hover .question-card-front,
.question-card:hover .question-card-back {
  box-shadow:
    0 30px 70px rgba(80, 58, 65, 0.16),
    0 10px 24px rgba(197, 54, 120, 0.1);
}

.card-navigation {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  pointer-events: none;
}

.card-navigation .btn {
  min-height: 56px;
  padding-inline: 1rem;
  white-space: nowrap;
  pointer-events: auto;
}

.card-navigation .btn-soft {
  background-color: #ff5841;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 10px 24px rgba(197, 54, 120, 0.16);
  font-weight: 500;
}

.card-navigation .btn-soft:hover,
.card-navigation .btn-soft:focus {
  background-color: #e14b36;
  color: #fff;
  transform: translateY(-1px);
}

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

.card-navigation .btn-outline-soft:hover,
.card-navigation .btn-outline-soft:focus {
  background-color: #ff5841;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobil finomhangolás */
@media (max-width: 767.98px) {
  .card-stage {
    max-width: 100%;
  }

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

  .question-card-face {
    padding: 26px 22px 106px;
    border-radius: 24px;
  }

  .question-card-face::before {
    inset: 12px;
    border-radius: 19px;
  }

  .question-text,
  .card-start-button {
    font-size: clamp(1.35rem, 5.8vw, 1.85rem);
    line-height: 1.16;
    max-width: 310px;
  }

  .question-hint {
    font-size: 0.92rem;
    max-width: 300px;
  }

  .card-navigation {
    left: 22px;
    right: 22px;
    bottom: 24px;
    gap: 10px;
  }

  .card-navigation .btn {
    min-width: 0;
    min-height: 50px;
    padding: 0.72rem 0.65rem;
    font-size: 0.94rem;
  }
}

@media (max-width: 420px) {
  .card-navigation .nav-long {
    display: none;
  }
}
