/* pricing-offer-note: világos és sötét témához illeszkedő stílus */
.pricing-offer-note {
  text-align: center;
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: -1.2rem;
  letter-spacing: 0.01em;
  background: #fff7fa;
  border-radius: 8px;
  padding: 0.5em 1.2em;
  display: inline-block;
  box-shadow: 0 2px 8px #b97f9722;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

@media (prefers-color-scheme: dark) {
  .pricing-offer-note {
    background: #2a1a22;
    color: #e6b8d1;
    box-shadow: 0 2px 8px #b97f9744;
  }
}

html[data-theme='dark'] .pricing-offer-note {
  background: #2a1a22;
  color: #e6b8d1;
  box-shadow: 0 2px 8px #b97f9744;
}
/* --- Old Price Style (összehangolva styles/theme.css-sel) --- */
.old-price {
  text-decoration: line-through;
  color: #b97f97;
  font-size: 1.1rem;
  margin-right: 0.5em;
  opacity: 0.7;
  font-weight: 500;
  vertical-align: middle;
}
/* --- Pricing & Offer Styles from styles/theme.css --- */
.pricing-badge-offer {
  background: linear-gradient(90deg, #43a047 60%, #b97f97 100%);
  color: #fff;
  font-size: 1.01rem;
  font-weight: 700;
  padding: 0.22em 1.1em;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
  box-shadow: 0 2px 8px #43a04733;
  display: inline-block;
  letter-spacing: 0.01em;
  animation: pulse-offer 1.5s infinite alternate;
}

@keyframes pulse-offer {
  0% {
    box-shadow: 0 2px 8px #43a04733;
  }

  100% {
    box-shadow: 0 4px 16px #43a04766;
  }
}

/* pricing-offer-note: világos és sötét témához illeszkedő stílus */
.pricing-offer-note {
  text-align: center;
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.7rem;
  margin-top: -1.2rem;
  letter-spacing: 0.01em;
  background: #fff7fa;
  border-radius: 8px;
  padding: 0.5em 1.2em;
  display: inline-block;
  box-shadow: 0 2px 8px #b97f9722;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

@media (prefers-color-scheme: dark) {
  .pricing-offer-note {
    background: #2a1a22;
    color: #e6b8d1;
    box-shadow: 0 2px 8px #b97f9744;
  }
}

html[data-theme='dark'] .pricing-offer-note {
  background: #2a1a22;
  color: #e6b8d1;
  box-shadow: 0 2px 8px #b97f9744;
}

@media (prefers-color-scheme: dark),
(data-theme="dark") {
  .pricing-offer-note {
    background: #2a1a22;
    color: #e6b8d1;
    box-shadow: 0 2px 8px #b97f9744;
  }

  .pricing-badge-offer {
    background: linear-gradient(90deg, #388e3c 60%, #b97f97 100%);
    color: #fff;
    box-shadow: 0 2px 12px #43a04744;
  }
}

/* Reservee Theme Colors + Komponens stílusok + Dark mode */
:root {
  --primary: #B97F97;
  --bg: #fff;
  --card: #F7F7F7;
  --text: #222;
  --subtle: #555;
  --divider: #E0E0E0;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']) {
    --bg: #18171A;
    --card: #232227;
    --text: #fff;
    --subtle: #fff7;
    --divider: #33333A;
  }
}

html[data-theme='dark'] {
  --bg: #18171A;
  --card: #232227;
  --text: #fff;
  --subtle: #fff7;
  --divider: #33333A;
}

html[data-theme='light'] {
  --bg: #fff;
  --card: #F7F7F7;
  --text: #222;
  --subtle: #555;
  --divider: #E0E0E0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3vw 1.5rem 3vw;
  background: var(--bg);
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
}

.login-btn,
.cta-btn {
  background: linear-gradient(90deg, var(--primary), #eec6d6 80%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.75em 2em;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  text-decoration: none;
  box-shadow: 0 2px 12px #b97f9733;
  letter-spacing: 0.02em;
  outline: none;
}

.login-btn:hover,
.cta-btn:hover {
  background: linear-gradient(90deg, #a05e7c, #eec6d6 80%);
  box-shadow: 0 4px 18px #b97f9755;
  transform: translateY(-2px) scale(1.03);
}

.theme-toggle {
  margin-left: 1.5rem;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3em 0.7em;
  border-radius: 50%;
  transition: background 0.2s;
}

.theme-toggle:hover {
  background: var(--card);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3vw 3vw 2vw 3vw;
  gap: 2rem;
}

.hero-content {
  flex: 1 1 350px;
  min-width: 300px;
}

.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--subtle);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.mockup {
  flex: 1 1 350px;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  box-shadow: none !important;
}

.mockup-placeholder {
  display: none;
}

.mockup-img {
  width: 420px;
  max-width: 95vw;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: none;
  display: block;
  margin: 0 auto;
}

.section {
  padding: 4vw 3vw 2vw 3vw;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-card {
  background: var(--card);
  border-radius: 1rem;
  box-shadow: 0 2px 8px #0001;
  padding: 2rem 1.5rem;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  text-align: center;
}

.feature-card.soon {
  position: relative;
  overflow: visible;
}

.soon-ribbon {
  position: absolute;
  top: 12px;
  right: -38px;
  z-index: 2;
  background: linear-gradient(90deg, var(--primary), #eec6d6);
  color: #fff;
  font-size: 0.85em;
  font-weight: 700;
  padding: 0.35em 2.2em;
  transform: rotate(32deg);
  box-shadow: 0 2px 8px #0002;
  border-radius: 6px;
  letter-spacing: 0.04em;
  pointer-events: none;
  text-shadow: 0 1px 2px #0003;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--subtle);
  font-size: 1rem;
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: 0 4px 16px #0001;
  padding: 2.5rem 2rem;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  text-align: center;
  border: 2px solid var(--divider);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 32px #b97f9722;
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: var(--subtle);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  color: var(--text);
}

.pricing-features li {
  margin-bottom: 0.5rem;
}

.cta-section {
  background: linear-gradient(90deg, var(--primary), #eec6d6 80%);
  color: #fff;
  text-align: center;
  padding: 4vw 3vw 4vw 3vw;
  border-radius: 2rem;
  margin: 4vw 3vw;
  box-shadow: 0 4px 32px #b97f9722;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
}

.cta-icon {
  font-size: 2.2rem;
  margin-right: 0.2em;
  filter: drop-shadow(0 2px 8px #b97f9733);
}

.cta-btn.cta-btn-big {
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.1em 3em;
  margin-top: 0.5em;
  border-radius: 2em;
  box-shadow: 0 4px 18px #b97f9755;
}

.cta-sub {
  margin-top: 1.5rem;
  color: #fff;
  font-size: 1.1rem;
  opacity: 0.92;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background: var(--card);
  box-shadow: 0 2px 8px #0001;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.faq-q[aria-expanded="true"] {
  background: #f7f7f7;
  color: var(--primary);
}

html[data-theme='dark'] .faq-q[aria-expanded="true"] {
  background: #232227;
  color: var(--primary);
}

.faq-a {
  padding: 0.7rem 1.5rem 1.3rem 1.5rem;
  color: var(--subtle);
  font-size: 1rem;
  animation: fadeIn 0.3s;
  line-height: 1.7;
  border-radius: 0 0 1rem 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  text-align: center;
  color: var(--subtle);
  padding: 2rem 0 1rem 0;
  font-size: 0.95rem;
  border-top: 1px solid var(--divider);
  margin-top: 3vw;
}

.trial-highlight {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), #eec6d6 80%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 0.7em 2em;
  border-radius: 2em;
  margin: 2rem auto 0 auto;
  box-shadow: 0 2px 12px #b97f9733;
  letter-spacing: 0.04em;
  text-align: center;
  transition: transform 0.15s;
  animation: popIn 0.7s cubic-bezier(.68, -0.55, .27, 1.55);
}

@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  80% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(.68, -0.55, .27, 1.55), transform 0.8s cubic-bezier(.68, -0.55, .27, 1.55);
  will-change: opacity, transform;
}

.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

/* Hover lift effect only for cards and buttons, not for full sections */
.feature-card,
.pricing-card,
.faq-item,
.login-btn,
.cta-btn {
  transition: box-shadow 0.2s, transform 0.18s, opacity 0.2s;
}

.feature-card:hover,
.pricing-card:hover,
.faq-item:hover,
.login-btn:hover,
.cta-btn:hover {
  z-index: 2;
  box-shadow: 0 8px 32px #b97f9755, 0 2px 8px #b97f9733;
  transform: translateY(-7px) scale(1.025);
}

/* Remove hover effect from section, hero, cta-section backgrounds */
.section:hover,
.hero:hover,
.cta-section:hover {
  box-shadow: none;
  transform: none;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0 0.5rem 0;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: linear-gradient(90deg, var(--primary), #eec6d6 80%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 2em;
  padding: 0.6em 1.5em;
  text-decoration: none;
  box-shadow: 0 2px 12px #b97f9733;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #a05e7c, #eec6d6 80%);
  box-shadow: 0 4px 18px #b97f9755;
  transform: translateY(-2px) scale(1.03);
}

.email-btn::before {
  content: '✉️';
  margin-right: 0.5em;
}

.phone-btn::before {
  content: '📞';
  margin-right: 0.5em;
}

@media (max-width: 800px) {

  .hero,
  .features,
  .pricing {
    flex-direction: column;
    align-items: stretch;
  }

  .hero {
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 3vw 1rem 3vw;
    gap: 0.7rem;
  }

  .logo {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .login-btn {
    padding: 0.6em 1.2em;
    font-size: 0.98rem;
    margin-top: 0.2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .header>div[style] {
    width: 100%;
    justify-content: flex-start;
    gap: 0.7rem;
  }

  .feature-card {
    min-height: unset;
    height: auto;
    min-width: 0;
    max-width: 100%;
    padding: 1.2rem 0.8rem;
    margin: 0;
    flex: 1 1 100%;
  }

  .features {
    gap: 1.2rem;
  }
}