/* =============================================================================
   Pacco Planning — Shared Styles
   Used by: index.html, imprint.html, privacy.html, terms.html
   ============================================================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111827;
  background: #f9fafb;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-brand img {
  width: 32px;
  height: 32px;
}
.nav-brand span {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.lang-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.lang-toggle:hover { background: rgba(255,255,255,0.2); }

/* Legal links in nav — hidden on desktop, shown in mobile menu */
.nav-legal-links {
  display: none;
}

/* Mobile nav */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile-toggle svg { width: 24px; height: 24px; }

/* Hamburger → X animation */
.nav-mobile-toggle .icon-menu { display: block; }
.nav-mobile-toggle .icon-close { display: none; }
.nav-links.open ~ .nav-mobile-toggle .icon-menu,
.nav-mobile-toggle.is-open .icon-menu { display: none; }
.nav-links.open ~ .nav-mobile-toggle .icon-close,
.nav-mobile-toggle.is-open .icon-close { display: block; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #111827;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open .nav-legal-links {
    display: flex;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-legal-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-weight: 400;
  }
  .nav-legal-links a:hover { color: rgba(255,255,255,0.8); }
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  background: #111827;
  color: #fff;
}
@media (max-width: 768px) {
  .hero { padding: 88px 0 56px; }
}
.hero-overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ef6b6b;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Hero CTA button (for when app is live) */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ef6b6b;
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}
.hero-cta:hover {
  background: #e05555;
  transform: translateY(-1px);
}
.hero-cta:active {
  transform: translateY(0);
}

/* Coming Soon badge (pre-launch) */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.coming-soon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef6b6b;
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== HERO MOCKUP ===== */
.hero-mockup {
  max-width: 700px;
  margin: 48px auto 0;
  border-radius: 12px;
  background: #1a1f2e;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.2);
  transform: perspective(1200px) rotateX(2deg);
  overflow: hidden;
}
.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot--red { background: #ff5f57; }
.mockup-dot--yellow { background: #febc2e; }
.mockup-dot--green { background: #28c840; }
.mockup-titlebar-text {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  margin-right: 38px;
}
.mockup-content {
  padding: 16px;
}
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 0 4px;
}
.mockup-header-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.mockup-header-badge {
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(239, 107, 107, 0.15);
  color: #ef6b6b;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(239, 107, 107, 0.25);
}
.mockup-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.mockup-table thead th {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  padding: 10px 14px;
  text-align: left;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-table tbody td {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mockup-table tbody tr:last-child td {
  border-bottom: none;
}
.mockup-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}
.mockup-event-name {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.mockup-event-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.mockup-status {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}
.mockup-status--confirmed {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.mockup-status--planning {
  background: rgba(239, 107, 107, 0.15);
  color: #ef6b6b;
  border: 1px solid rgba(239, 107, 107, 0.2);
}
.mockup-status--draft {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 600px) {
  .hero-mockup {
    margin: 32px 0 0;
    transform: none;
    border-radius: 10px;
  }
  .mockup-table thead th,
  .mockup-table tbody td {
    padding: 8px 10px;
    font-size: 0.7rem;
  }
  .mockup-col-location { display: none; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }
.feature-card:nth-child(6) { transition-delay: 0.5s; }
.workflow-step:nth-child(1) { transition-delay: 0s; }
.workflow-step:nth-child(2) { transition-delay: 0.1s; }
.workflow-step:nth-child(3) { transition-delay: 0.2s; }
.workflow-step:nth-child(4) { transition-delay: 0.3s; }
.pricing-card:nth-child(1) { transition-delay: 0s; }
.pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-card:nth-child(3) { transition-delay: 0.2s; }
.pricing-enterprise {
  margin-top: 24px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 28px 40px;
  border: 1px solid #e5e7eb;
}
.pricing-enterprise-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.pricing-enterprise-text {
  text-align: left;
  flex: 1;
}
.pricing-enterprise-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.pricing-enterprise-text p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.pricing-enterprise .pricing-cta {
  display: inline-block;
  width: auto;
  margin-top: 0;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 12px 32px;
}
@media (max-width: 768px) {
  .pricing-enterprise { padding: 24px; }
  .pricing-enterprise-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .pricing-enterprise-text { text-align: center; }
  .pricing-enterprise .pricing-cta { width: 100%; }
}
.faq-item:nth-child(1) { transition-delay: 0s; }
.faq-item:nth-child(2) { transition-delay: 0.05s; }
.faq-item:nth-child(3) { transition-delay: 0.1s; }
.faq-item:nth-child(4) { transition-delay: 0.15s; }
.faq-item:nth-child(5) { transition-delay: 0.2s; }
.faq-item:nth-child(6) { transition-delay: 0.25s; }

/* ===== SECTION HEADERS ===== */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ef6b6b;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #111827;
}
.section-subtitle {
  font-size: 1rem;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s, opacity 0.6s ease;
}
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: #111827;
}
/* Per-feature icon colors matching app semantic palette */
.feature-icon--menu {
  background: rgba(8, 145, 178, 0.1);
  color: #0891b2;
}
.feature-icon--packing {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.feature-icon--shopping {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.feature-icon--recipes {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.feature-icon--email {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}
.feature-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-benefits li {
  font-size: 0.8rem;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 6px;
}
.feature-benefits li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef6b6b;
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.workflow-section {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
@media (max-width: 768px) {
  .workflow-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .workflow-steps { grid-template-columns: 1fr; }
}
.workflow-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
/* Connector line between steps */
.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  right: -1px;
  width: calc(100% - 72px);
  height: 2px;
  background: #e5e7eb;
  transform: translateX(50%);
}
@media (max-width: 768px) {
  .workflow-step:not(:last-child)::after { display: none; }
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 auto 16px;
}
.workflow-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.workflow-step p {
  font-size: 0.825rem;
  color: #6b7280;
}
.workflow-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.workflow-trust span {
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-icon {
  width: 16px;
  height: 16px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  position: relative;
  text-align: center;
}
.pricing-card.popular {
  border-color: #ef6b6b;
  box-shadow: 0 8px 32px rgba(239, 107, 107, 0.12);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ef6b6b;
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.pricing-desc {
  font-size: 0.825rem;
  color: #6b7280;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}
.pricing-amount {
  font-size: 2.25rem;
  font-weight: 700;
}
.pricing-period {
  font-size: 0.875rem;
  color: #6b7280;
}
.pricing-licenses {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.pricing-features li {
  font-size: 0.85rem;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing-features li svg {
  width: 16px;
  height: 16px;
  color: #10b981;
  flex-shrink: 0;
}


/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  text-align: left;
}
.faq-question:hover { background: #f9fafb; }
.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
  flex-shrink: 0;
  color: #9ca3af;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ===== LEGAL PAGE CONTENT ===== */
.legal-page {
  padding: 120px 0 80px;
}
@media (max-width: 768px) {
  .legal-page { padding: 88px 0 56px; }
}
.legal-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .legal-card { padding: 28px 20px; margin: 0 16px; }
}
.legal-card h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}
.legal-updated {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 36px;
}
.legal-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 32px 0;
}
.legal-card h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}
.legal-card p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.legal-card ul li {
  font-size: 0.875rem;
  color: #374151;
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.6;
}
.legal-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef6b6b;
  flex-shrink: 0;
  margin-top: 8px;
}
.legal-card a {
  color: #ef6b6b;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-card a:hover { color: #dc5a5a; }

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 24px; }
}
.footer-brand p {
  font-size: 0.825rem;
  max-width: 300px;
  margin-top: 12px;
  line-height: 1.6;
}
.footer-links-group {
  display: flex;
  gap: 64px;
}
@media (max-width: 768px) {
  .footer-links-group { gap: 32px; }
}
.footer-links h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links ul li::before { display: none; }
.footer-links a {
  font-size: 0.825rem;
  transition: color 0.2s;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== HERO TRIAL HINT ===== */
.hero-trial-hint {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  letter-spacing: 0.01em;
}

/* ===== PRICING CTA BUTTONS ===== */
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  margin-top: 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  background: #111827;
  color: #fff;
}
.pricing-cta:hover {
  background: #1f2937;
  transform: translateY(-1px);
}
.pricing-cta--popular {
  background: #ef6b6b;
}
.pricing-cta--popular:hover {
  background: #e05555;
}
.pricing-cta--disabled {
  background: #e5e7eb;
  color: #6b7280;
  cursor: default;
}
.pricing-cta--disabled:hover {
  background: #e5e7eb;
  transform: none;
}
.pricing-cta--popular.pricing-cta--disabled {
  background: rgba(239, 107, 107, 0.15);
  color: #ef6b6b;
}
.pricing-cta--popular.pricing-cta--disabled:hover {
  background: rgba(239, 107, 107, 0.15);
}
.pricing-trial-note {
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 8px;
}
.coming-soon-badge--light {
  background: rgba(17, 24, 39, 0.05);
  border-color: #e5e7eb;
  color: #374151;
}
.coming-soon-badge--inline {
  margin: 0;
}

/* ===== CREDIBILITY SECTION ===== */
.credibility-section {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .credibility-grid { grid-template-columns: 1fr; gap: 16px; }
}
.credibility-card {
  padding: 28px 24px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  text-align: center;
}
.credibility-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.credibility-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.credibility-card p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== FEATURE HIGHLIGHT (AI USP) ===== */
.features-highlight {
  margin-top: 48px;
  margin-bottom: 32px;
}
.feature-highlight-card {
  background: #111827;
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.feature-highlight-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(239, 107, 107, 0.15);
  color: #ef6b6b;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(239, 107, 107, 0.25);
  margin-bottom: 20px;
}
.feature-highlight-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .feature-highlight-content { grid-template-columns: 1fr; gap: 28px; }
  .feature-highlight-card { padding: 24px; }
}
.feature-highlight-text {
  text-align: left;
}
.feature-highlight-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.feature-highlight-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-highlight-text .feature-benefits li {
  color: rgba(255,255,255,0.7);
}
.feature-highlight-text .feature-benefits li::before {
  background: #ef6b6b;
}

/* Email-to-Event Demo Visual */
.email-to-event-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.demo-email {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  width: 100%;
}
.demo-email-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.demo-email-body {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  font-style: italic;
}
.demo-arrow {
  color: #ef6b6b;
  animation: arrow-bounce 2s ease-in-out infinite;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.demo-event {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-event-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.demo-event-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}
.demo-event-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.demo-event-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* AI Feature Card Accent */
.feature-card--ai {
  border-color: rgba(239, 107, 107, 0.3);
  position: relative;
}
.feature-card--ai::before {
  content: 'KI';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(239, 107, 107, 0.1);
  color: #ef6b6b;
  padding: 3px 8px;
  border-radius: 4px;
}
.feature-icon--ai {
  background: rgba(239, 107, 107, 0.1);
  color: #ef6b6b;
}
.feature-card--ai-email {
  border-color: rgba(249, 115, 22, 0.3);
  position: relative;
}
.feature-card--ai-email::before {
  content: 'KI';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
  padding: 3px 8px;
  border-radius: 4px;
}

/* ===== NAV LOGIN BUTTON ===== */
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #ef6b6b;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-login-btn:hover {
  background: #e05555;
}
@media (max-width: 768px) {
  .nav-login-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
  }
}

/* ===== SECTION CTA ===== */
.section-cta {
  text-align: center;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
  background: #111827;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== FEATURES GRID 5-COLUMN ADJUSTMENT ===== */
/* When there are 5 cards, last row of 2 should center */
@media (min-width: 901px) {
  .features-grid {
    justify-items: center;
  }
}
