/* ============================================
   Párkapcsolati Coaching – Shared Stylesheet
   Aesthetic: Warm editorial, sage & dusty rose
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&display=swap');

/* ── CSS Variables ── */
:root {
  --cream:       #F9F5F0;
  --cream-dark:  #F1EBE2;
  --cream-mid:   #EDE4D8;
  --sage:        #8A9E8B;
  --sage-light:  #B5C9B6;
  --sage-dark:   #627B63;
  --rose:        #C4907A;
  --rose-light:  #DDB8A8;
  --rose-dark:   #9D6A55;
  --charcoal:    #2C2A28;
  --warm-gray:   #6B6560;
  --light-gray:  #E8E2DA;
  --white:       #FEFCF9;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-full: 999px;

  --shadow-sm:   0 2px 8px rgba(44,42,40,0.06);
  --shadow-md:   0 4px 20px rgba(44,42,40,0.10);
  --shadow-lg:   0 12px 48px rgba(44,42,40,0.12);

  --max-width: 1160px;
  --section-padding: 96px 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

/* ── Hero image ── */
.hero-image img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 12px; margin-top: 2rem; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 500;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p { font-size: 1.05rem; line-height: 1.8; color: var(--warm-gray); }
.lead { font-size: 1.2rem; line-height: 1.75; }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-padding); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}
.btn-secondary:hover {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}
.btn-rose {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-rose:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,245,240,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo span {
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--warm-gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s;
  border-radius: 2px;
}

/* ── Mobile Nav ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
  display: block;
}

/* ── Decorative Rule ── */
.rule {
  width: 48px;
  height: 2px;
  background: var(--rose-light);
  margin: 20px 0;
}
.rule-center { margin-left: auto; margin-right: auto; }

/* ── Text Accent ── */
.accent { color: var(--sage-dark); }
.accent-rose { color: var(--rose); }
em { font-style: italic; font-family: var(--font-display); }

/* ── Backgrounds ── */
.bg-sage-soft { background: #EEF3EE; }
.bg-rose-soft { background: #F7EDE9; }
.bg-cream-dark { background: var(--cream-dark); }
.bg-charcoal { background: var(--charcoal); color: var(--cream); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4 { color: var(--cream); }
.bg-charcoal p { color: rgba(249,245,240,0.72); }
.bg-charcoal .section-label { color: var(--sage-light); }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ── Quote / Testimonial ── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border-left: 3px solid var(--rose-light);
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 16px;
}
.testimonial cite {
  font-size: 0.88rem;
  color: var(--warm-gray);
  font-style: normal;
}

/* ── Check List ── */
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--charcoal);
}
.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--sage-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23627B63'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 3px;
}

/* ── Bullet Rows ── */
.bullet-list { display: flex; flex-direction: column; gap: 14px; }
.bullet-list li {
  padding-left: 24px;
  position: relative;
  color: var(--charcoal);
  font-size: 1.05rem;
}
.bullet-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose-light);
  font-weight: 300;
}

/* ── Two-Column Section ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

/* ── Hero ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,201,182,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,144,122,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(138,158,139,0.15);
  color: var(--sage-dark);
  border: 1px solid rgba(138,158,139,0.3);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}
.hero .lead {
  max-width: 580px;
  margin-bottom: 40px;
  color: var(--warm-gray);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-size: 0.85rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--sage-light);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Floating Orb ── */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  animation: drift 12s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-15px) scale(1.05); }
  66%       { transform: translate(-10px,20px) scale(0.97); }
}

/* ── Pain Points Grid ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.pain-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pain-dot {
  width: 10px; height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--rose-light);
  margin-top: 8px;
}

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sage-light);
  transition: background 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { background: var(--sage-dark); }
.service-card.featured {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
}
.service-card.featured::before { background: var(--sage-dark); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(138,158,139,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1.5px solid var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.highlighted {
  border-color: var(--sage);
  background: #F4F8F4;
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-bottom: 28px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--warm-gray);
  font-weight: 400;
}
.pricing-rule { height: 1px; background: var(--light-gray); margin: 28px 0; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 0.95rem;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--sage-dark);
  font-weight: 600;
  flex-shrink: 0;
}

/* ── Form ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(138,158,139,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: #B5AFA8; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.55;
  margin-top: 16px;
}
.form-note a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }

/* ── Trust Badges ── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--warm-gray);
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(138,158,139,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Profile Photo Placeholder ── */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 380px;
  background: linear-gradient(145deg, var(--cream-mid), var(--sage-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-family: var(--font-body);
}
.photo-placeholder svg { opacity: 0.4; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--sage-dark) 0%, #4A6B4B 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--sage-dark);
}
.cta-banner .btn-primary:hover { background: var(--cream); }

/* ── Lead Magnet Box ── */
.lead-magnet-box {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  border: 1px solid rgba(138,158,139,0.2);
}

/* ── Steps ── */
.steps { display: flex; flex-direction: column; gap: 32px; }
.step { display: flex; align-items: flex-start; gap: 24px; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  min-width: 48px;
}
.step-content h4 { margin-bottom: 8px; }

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(249,245,240,0.65);
  padding: 64px 24px 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: var(--cream); }
.footer-brand .nav-logo span { color: rgba(249,245,240,0.5); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(249,245,240,0.55);
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249,245,240,0.45);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 0.92rem;
  color: rgba(249,245,240,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(249,245,240,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(249,245,240,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-padding: 72px 24px; }
  .two-col { gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 56px 20px; }
  .container { padding: 0 20px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-reverse { direction: ltr; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .lead-magnet-box { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 100px 20px 64px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .cta-banner { padding: 44px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .card { padding: 28px 24px; }
  .service-card { padding: 32px 28px; }
  .pricing-card { padding: 32px 28px; }
  .cta-banner { padding: 36px 24px; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-56 { margin-bottom: 56px; }
.mb-64 { margin-bottom: 64px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.flex   { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }

/* ── Quote Mark Decoration ── */
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--rose-light);
  opacity: 0.4;
  display: block;
  margin-bottom: 8px;
}

/* ── Stat Block ── */
.stat-block { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-top: 8px;
  display: block;
}

/* ── Sticky CTA bar (mobile) ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  padding: 16px 20px;
  z-index: 99;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
}
@media (max-width: 640px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ── Booking Placeholder ── */
.booking-placeholder {
  background: var(--cream-dark);
  border: 2px dashed var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--warm-gray);
}
.booking-placeholder h3 { color: var(--charcoal); margin-bottom: 12px; }
.booking-placeholder p { font-size: 0.9rem; margin-bottom: 24px; }

/* ── Test Questions (kotodesi-teszt.html) ── */
.test-progress {
  height: 4px;
  background: var(--light-gray);
  border-radius: var(--radius-full);
  margin-bottom: 48px;
  overflow: hidden;
}
.test-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--sage-dark), var(--sage-light));
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
  width: 0%;
}
.test-option {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
  margin-bottom: 12px;
}
.test-option:hover {
  border-color: var(--sage);
  background: #F4F8F4;
}
.test-option.selected {
  border-color: var(--sage-dark);
  background: #EEF3EE;
}
.test-option-letter {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm-gray);
  transition: all 0.2s;
}
.test-option:hover .test-option-letter,
.test-option.selected .test-option-letter {
  border-color: var(--sage-dark);
  background: var(--sage-dark);
  color: var(--white);
}
