/* GutHolz Club — Design System */

:root {
  --green: #16a34a;
  --green-dark: #166534;
  --green-mid: #15803d;
  --green-light: #dcfce7;
  --amber: #d97706;
  --amber-dark: #92400e;
  --amber-light: #fef3c7;
  --red: #dc2626;
  --red-light: #fee2e2;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.5;
  font-size: 15px;
  overflow-x: hidden;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── Layout ─────────────────────────────── */
.app { display: flex; min-height: 100vh; }

.sidebar {
  width: 240px; min-height: 100vh;
  background: var(--gray-900); color: white;
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0;
  z-index: 100;
}

.sidebar-logo {
  padding: 20px 20px 16px;
  font-size: 20px; font-weight: 800;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; gap: 10px;
}

.sidebar-logo .emoji { font-size: 28px; }

.sidebar-club {
  padding: 10px 20px 14px;
  font-size: 12px; color: var(--gray-400);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sidebar-nav { flex: 1; padding: 12px 10px; }

.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  color: var(--gray-300); font-size: 14px; font-weight: 500;
  transition: all .15s;
  margin-bottom: 2px;
  text-decoration: none;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
  background: var(--green); color: white;
}

.sidebar-nav .icon { font-size: 18px; width: 22px; text-align: center; }

.sidebar-footer {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px; color: var(--gray-400);
}

.sidebar-footer .user-name { color: white; font-weight: 600; }

.main-content {
  flex: 1; margin-left: 240px;
  padding: 28px 32px;
}

/* ─── Components ─────────────────────────── */
.page-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 24px;
}
.page-header h1 { font-size: 22px; font-weight: 700; }

.card {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}

.card-header {
  padding: 16px 20px; border-bottom: 1px solid var(--gray-100);
  display: flex; justify-content: space-between; align-items: center;
}
.card-header h3 { font-size: 15px; font-weight: 600; }

.card-body { padding: 20px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Stat Cards */
.stat { background: white; border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow); }
.stat-emoji { font-size: 28px; margin-bottom: 10px; }
.stat-val { font-size: 30px; font-weight: 800; color: var(--gray-900); }
.stat-label { font-size: 13px; color: var(--gray-600); margin-top: 2px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; border: none;
  cursor: pointer; transition: all .15s; text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); }

.btn-secondary { background: white; color: var(--gray-700); border: 1.5px solid var(--gray-200); }
.btn-secondary:hover { background: var(--gray-50); }

.btn-danger { background: var(--red); color: white; }
.btn-danger:hover { background: #b91c1c; }

.btn-amber { background: var(--amber); color: white; }

.btn-lg { padding: 13px 24px; font-size: 16px; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* Badges */
.badge {
  display: inline-flex; padding: 3px 10px;
  border-radius: 20px; font-size: 12px; font-weight: 600;
}
.badge-green { background: var(--green-light); color: var(--green-dark); }
.badge-amber { background: var(--amber-light); color: var(--amber-dark); }
.badge-red   { background: var(--red-light);   color: var(--red); }
.badge-gray  { background: var(--gray-100);    color: var(--gray-600); }

/* Tables */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead th {
  text-align: left; padding: 11px 16px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  color: var(--gray-500); border-bottom: 1px solid var(--gray-200);
}
tbody td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--gray-50); }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 12px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-size: 14px; color: var(--gray-800); background: white;
  transition: border-color .15s;
}
.form-group input:focus, .form-group select:focus {
  outline: none; border-color: var(--green);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-actions { display: flex; gap: 10px; margin-top: 20px; }

/* Alerts */
.alert {
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 14px; margin-bottom: 16px;
}
.alert-success { background: var(--green-light); color: var(--green-dark); }
.alert-error   { background: var(--red-light);   color: var(--red); }

/* Flash toasts */
.flash-container { position: fixed; top: 20px; right: 20px; z-index: 999; }
.flash {
  padding: 12px 18px; border-radius: var(--radius);
  margin-bottom: 8px; font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-md); animation: slideIn .3s ease;
}
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.flash-success { background: #16a34a; color: white; }
.flash-error   { background: #dc2626; color: white; }

/* Avatar */
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}

/* Live-Abend */
.live-header {
  background: var(--gray-900); color: white;
  padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.live-badge { background: var(--red); color: white; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .6; } }

.teilnehmer-karte {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  padding: 14px; margin-bottom: 10px; background: white;
  transition: border-color .15s;
}
.teilnehmer-karte:hover { border-color: var(--green); }

.teilnehmer-name { font-weight: 600; font-size: 15px; }
.teilnehmer-betrag { font-size: 22px; font-weight: 800; color: var(--red); }
.teilnehmer-strafen { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* Schulden-Farben */
.schulden-pos { color: var(--red);   font-weight: 700; }
.schulden-neg { color: var(--green); font-weight: 700; }
.schulden-zero { color: var(--gray-500); }

/* Empty state */
.empty {
  text-align: center; padding: 48px 20px;
  color: var(--gray-600);
}
.empty .emoji { font-size: 48px; margin-bottom: 12px; }
.empty p { margin-bottom: 16px; }

/* Material Icons Base Styles */
.material-icons {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
  overflow: hidden;
  max-width: 1.5em;
}

/* Icon sizing variants */
.material-icons.icon-sm { font-size: 18px; }
.material-icons.icon-md { font-size: 24px; }
.material-icons.icon-lg { font-size: 36px; }
.material-icons.icon-xl { font-size: 48px; }

/* Landing Page Specific Icon Styles */
.land-logo-icon {
  font-size: 28px;
  color: var(--green);
}

.hero-badge .material-icons {
  font-size: 16px;
  margin-right: 6px;
  vertical-align: -3px;
}

.trust-icon {
  font-size: 18px;
  color: var(--green);
  margin-right: 6px;
  vertical-align: -4px;
}

.demo-icon-king {
  font-size: 18px;
  color: var(--amber);
  margin-right: 4px;
  vertical-align: -3px;
}

.demo-icon-pudel {
  font-size: 18px;
  color: var(--gray-500);
  margin-right: 4px;
  vertical-align: -3px;
}

.step-icon .material-icons {
  font-size: 48px;
  color: var(--green);
}

.feature-icon .material-icons {
  font-size: 36px;
  color: var(--green);
  margin-bottom: 14px;
}

.star-filled {
  font-size: 20px;
  color: var(--amber);
  margin-right: 2px;
}

.feature-check {
  font-size: 18px;
  color: var(--green);
  margin-right: 8px;
  vertical-align: -4px;
}

.footer-logo-icon {
  font-size: 24px;
  color: var(--green);
  margin-right: 8px;
  vertical-align: -5px;
}

.footer-heart {
  font-size: 16px;
  color: var(--green);
  vertical-align: -3px;
}

/* ─── Landing Page ────────────────────────── */
.land-hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a2744 100%);
  color: white; padding: 0;
  overflow-x: hidden;
}
.land-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.land-logo { font-size: 22px; font-weight: 800; display: flex; align-items: center; gap: 10px; color: white; text-decoration: none; }
.land-nav-links { display: flex; align-items: center; gap: 20px; }
.land-nav-links a { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500; text-decoration: none; }
.land-nav-links a:hover { color: white; }
.land-nav-links .btn-secondary { color: var(--gray-700); }
.land-nav-links .btn-primary { color: white; }

.land-hero-body {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 80px 40px;
}
.land-hero h1 { font-size: 44px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.land-hero p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.land-hero-btns { display: flex; gap: 12px; }

.land-section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.land-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; text-align: center; }
.land-section-lead { text-align: center; color: var(--gray-600); font-size: 17px; margin-bottom: 48px; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.feature-icon { margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pricing-card { background: white; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 2px solid transparent; }
.pricing-card.popular { border-color: var(--green); position: relative; }
.pricing-card.popular::before {
  content: "Beliebt"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
}
.pricing-name { font-size: 14px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.pricing-price { font-size: 36px; font-weight: 800; margin-bottom: 4px; }
.pricing-price span { font-size: 14px; font-weight: 500; color: var(--gray-600); }
.pricing-desc { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; min-height: 40px; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { font-size: 14px; color: var(--gray-600); padding: 6px 0; display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: "✓"; color: var(--green); font-weight: 700; }

.land-cta {
  background: var(--gray-900); color: white;
  padding: 80px 40px; text-align: center;
}
.land-cta h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.land-cta p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 28px; }

.land-footer {
  padding: 40px; text-align: center; color: var(--gray-600); font-size: 13px;
}

/* ─── Auth Pages ─────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a2744 100%);
  padding: 20px;
}
.auth-box {
  background: white; border-radius: var(--radius-lg);
  padding: 40px; width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.auth-box h1 { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.auth-box .subtitle { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; }

/* ─── Mobile ─────────────────────────────── */
@media (max-width: 900px) {
  .sidebar {
    width: 100%; position: relative; min-height: auto;
    flex-direction: row; flex-wrap: wrap; align-items: center;
  }
  .sidebar-logo { border-bottom: none; padding: 14px 16px; flex: 1; }
  .sidebar-club { display: none; }
  .sidebar-nav { width: 100%; padding: 0 10px 10px; border-top: 1px solid rgba(255,255,255,.08); }
  .sidebar-nav a { display: inline-flex; padding: 8px 12px; margin-bottom: 0; margin-right: 2px; font-size: 13px; }
  .sidebar-footer { width: 100%; border-top: 1px solid rgba(255,255,255,.08); padding: 10px 16px; display: flex; justify-content: space-between; }
  .main-content { margin-left: 0; padding: 20px 16px; }
  .app { flex-direction: column; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .land-hero-body { grid-template-columns: 1fr; padding: 60px 24px; }
  .land-hero h1 { font-size: 32px; }
  .steps-grid { grid-template-columns: 1fr; gap: 28px; max-width: 400px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 24px; }
  .page-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .grid-2 { grid-template-columns: 1fr; }
  .land-section { padding: 60px 20px; }
  .land-section-alt { padding: 60px 20px; }
  .land-cta { padding: 60px 20px; }
  .land-nav { padding: 16px 20px; }
  .footer-content { flex-direction: column; gap: 20px; padding: 0 20px; }
}

/* ─── Tablet (768px) ─────────────────────── */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .land-nav-links { gap: 12px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { gap: 32px; }
  .land-hero-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ─── Smartphone (480px) — Firefox iPhone ── */
@media (max-width: 480px) {
  body { font-size: 14px; }

  /* Landing Navigation - Fixed mobile nav */
  .land-nav { 
    padding: 12px 16px; 
    flex-wrap: wrap;
    gap: 10px;
  }
  .land-logo { font-size: 18px; }
  .land-logo-icon { font-size: 24px; }
  .land-nav-links { 
    display: flex; 
    gap: 8px; 
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1;
  }
  .land-nav-links a:not(.btn) { display: none; }
  .land-nav-links .btn-sm {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Hero Section - Better mobile layout */
  .land-hero {
    overflow-x: hidden;
  }
  .land-hero-body { 
    padding: 24px 16px 32px; 
    gap: 0;
    display: flex;
    flex-direction: column;
  }
  .land-hero h1 { 
    font-size: 26px; 
    line-height: 1.25;
    word-wrap: break-word;
    hyphens: auto;
  }
  .land-hero p { 
    font-size: 15px; 
    margin-bottom: 20px; 
    line-height: 1.6;
    word-wrap: break-word;
  }
  .hero-badge {
    font-size: 12px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }
  .hero-badge .material-icons {
    font-size: 14px;
  }
  .land-hero-btns { 
    flex-direction: column; 
    gap: 10px;
  }
  .land-hero-btns .btn-lg {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero-trust {
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }
  .trust-item {
    font-size: 13px;
  }

  /* Demo Card - Hide on very small screens, smaller on mobile */
  .hero-visual {
    display: none;
  }
  .demo-card-preview {
    max-width: 100%;
    transform: none;
  }
  .demo-card-preview:hover {
    transform: none;
  }
  .demo-card-header {
    padding: 12px 14px;
    font-size: 13px;
  }
  .demo-card-body {
    padding: 12px;
  }
  .demo-row {
    padding: 8px 0;
    font-size: 13px;
  }
  .demo-icon-king, .demo-icon-pudel {
    font-size: 16px;
  }

  /* Sections */
  .land-section { padding: 48px 16px; }
  .land-section h2 { 
    font-size: 24px; 
    margin-bottom: 12px;
  }
  .land-section-lead {
    font-size: 15px;
    margin-bottom: 32px;
  }
  .land-section-alt { padding: 48px 16px; }
  .land-cta { padding: 48px 16px; }
  .land-cta h2 { font-size: 24px; }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
    max-width: 100%;
  }
  .step-card {
    padding: 24px 20px;
  }
  .step-icon .material-icons {
    font-size: 40px;
  }
  .step-card h3 {
    font-size: 16px;
  }
  .step-card p {
    font-size: 13px;
  }

  /* Features */
  .features-grid { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .feature-card {
    padding: 24px;
  }
  .feature-icon .material-icons {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .feature-card h3 {
    font-size: 16px;
  }
  .feature-card p {
    font-size: 13px;
  }

  /* Testimonials */
  .testimonials-grid {
    gap: 16px;
    margin-bottom: 32px;
  }
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-text {
    font-size: 14px;
  }

  /* Stats */
  .stats-bar { 
    flex-direction: column; 
    gap: 20px;
    padding: 24px 16px;
  }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 13px; }

  /* Pricing */
  .pricing-grid {
    gap: 16px;
  }
  .pricing-card {
    padding: 24px;
  }
  .pricing-header h3 {
    font-size: 18px;
  }
  .pricing-price {
    font-size: 40px;
  }
  .pricing-features li {
    font-size: 13px;
    padding: 6px 0;
  }
  .feature-check {
    font-size: 16px;
  }
  .pricing-card .btn-lg {
    width: 100%;
    justify-content: center;
  }

  /* FAQ */
  .faq-question {
    padding: 16px;
    font-size: 14px;
  }
  .faq-answer {
    font-size: 13px;
    padding: 0 16px;
  }
  .faq-item.open .faq-answer {
    padding: 0 16px 16px;
  }

  /* CTA */
  .cta-buttons { 
    flex-direction: column; 
    align-items: stretch; 
    gap: 10px;
  }
  .cta-buttons .btn-lg {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-content { 
    padding: 0 16px; 
    gap: 16px;
  }
  .footer-brand {
    font-size: 18px;
  }
  .footer-brand p {
    font-size: 13px;
  }
  .footer-links { 
    flex-direction: column; 
    gap: 10px; 
  }
  .footer-links a {
    font-size: 13px;
  }
  .footer-bottom {
    font-size: 12px;
  }

  /* Sidebar Nav: horizontal scroll statt Überlauf */
  .sidebar-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; display: flex; flex-direction: row; flex-wrap: nowrap; padding: 0 8px 8px; }
  .sidebar-nav a { flex-shrink: 0; margin-right: 2px; margin-bottom: 0; }

  /* App-Layout */
  .main-content { padding: 14px 12px; }
  .page-header h1 { font-size: 18px; }
  .card-header { padding: 12px 14px; }
  .card-body { padding: 14px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .stat { padding: 14px; }
  .stat-val { font-size: 24px; }
  .stat-emoji { font-size: 22px; }

  /* Tables: kleinere Schrift auf sehr kleinen Screens */
  thead th { padding: 8px 10px; font-size: 11px; }
  tbody td { padding: 10px; font-size: 13px; }

  /* Auth */
  .auth-box { padding: 24px 16px; }
  .auth-box h1 { font-size: 20px; }

  /* Live-Abend */
  .teilnehmer-karte { padding: 10px; }
  .teilnehmer-betrag { font-size: 18px; }

  /* Buttons */
  .btn-lg { padding: 11px 18px; font-size: 15px; }
  .btn { font-size: 13px; padding: 8px 13px; }
}

/* ─── Landing Page Erweiterungen ──────────── */

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

/* Hero Visual / Demo Card Preview */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-card-preview {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 340px;
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.demo-card-preview:hover {
  transform: rotate(0deg) scale(1.02);
}

.demo-card-header {
  background: var(--gray-900);
  color: white;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
}

.badge-live {
  background: var(--red);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

.demo-card-body {
  padding: 16px;
}

.demo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.demo-row:last-child {
  border-bottom: none;
}

.demo-row .amount {
  color: var(--red);
  font-weight: 700;
}

.demo-row .amount-free {
  color: var(--green);
  font-weight: 700;
}

.demo-card-footer {
  background: var(--gray-50);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  border-top: 1px solid var(--gray-200);
}

.demo-card-footer .total {
  color: var(--gray-900);
  font-size: 18px;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
  margin-top: 8px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Social Proof / Testimonials */
.land-section-alt {
  background: var(--gray-100);
  max-width: 100%;
  padding: 80px 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--amber);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--gray-800);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray-600);
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
}

.stat-label {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 4px;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-200);
  text-align: center;
  position: relative;
}

.pricing-highlight {
  border-color: var(--green);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
}

.pricing-period {
  font-size: 14px;
  color: var(--gray-600);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

/* FAQ Section */
.land-section-faq {
  max-width: 700px;
}

.faq-list {
  margin-top: 32px;
}

.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question::after {
  content: "+";
  font-size: 20px;
  color: var(--gray-500);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  padding: 0 24px 20px;
  max-height: 200px;
}

/* CTA Section */
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 40px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 400;
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--gray-600);
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gray-800);
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
}
