@charset "UTF-8";
:root {
  --page-bg: #fffde7;
  --accent: #b976e5;
  --accent-soft: #ede9fe;
  --accent-rgb: 185, 118, 229;
  --on-accent: #ffffff;
  --highlight: #fad27c;
  --on-highlight: #b976e5;
  --section-bg: #d2a6ee;
  --on-section-bg: #8253a0;
  --on-section-bg-rgb: 130, 83, 160;
  --problem-bg: #d2a6ee;
  --on-problem-bg: #8253a0;
  --on-problem-bg-rgb: 130, 83, 160;
  --section-title: #fad27c;
}

body[data-audience=vermieter] {
  --page-bg: #ede9fe;
  --accent: #f9a825;
  --accent-soft: #fef3c7;
  --accent-rgb: 249, 168, 37;
  --on-accent: #ffffff;
  --highlight: #b976e5;
  --on-highlight: #ffffff;
  --section-bg: #fffde7;
  --on-section-bg: #b976e5;
  --on-section-bg-rgb: 185, 118, 229;
  --problem-bg: #fffde7;
  --on-problem-bg: #b976e5;
  --on-problem-bg-rgb: 185, 118, 229;
  --section-title: #b976e5;
}

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

input,
textarea,
select,
button {
  font-family: inherit;
}

body {
  font-family: "Alan Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--page-bg);
  color: #111827;
  line-height: 1.6;
  transition: background-color 0.2s ease;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.topbar {
  padding: 20px clamp(20px, 5vw, 60px);
  background: #fad27c;
  border-bottom: 3px solid #6b7280;
}
.topbar .logo {
  height: 40px;
}

.header {
  padding: 2rem 0;
  text-align: center;
}
.header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .logo-wrapper {
  display: inline-block;
}
.header .logo-wrapper img.logo {
  height: 64px;
  width: auto;
}
.header .audience-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  margin: 1.5rem auto 0;
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px;
  transition: background 0.2s ease;
}
@media (max-width: 480px) {
  .header .audience-toggle {
    display: grid;
    width: 100%;
  }
}
.header .toggle-slider {
  position: absolute;
  z-index: 0;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.header .audience-toggle[data-active=vermieter] .toggle-slider {
  transform: translateX(100%);
}
.header .toggle-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  padding: 0.6rem 1.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: color 0.2s ease;
}
@media (max-width: 480px) {
  .header .toggle-btn {
    padding: 0.6rem 0.5rem;
    font-size: 0.7rem;
    white-space: normal;
    line-height: 1.25;
  }
}
.header .toggle-btn.is-active {
  color: var(--on-accent);
}

.hero {
  text-align: center;
  padding: 4rem 0 5rem;
}
.hero .badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--accent);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-family: "Bricolage Grotesque", sans-serif;
}
.hero h1 span {
  position: relative;
  display: inline-block;
}
.hero .hero-image {
  position: relative;
  z-index: -1;
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.18);
}
.hero .subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero .signup-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 2.5rem;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(var(--accent-rgb), 0.12), 0 2px 8px rgba(var(--accent-rgb), 0.06);
}
.hero .signup-box h2 {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.hero .signup-box .form-hint {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.hero .signup-box .form-row {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .hero .signup-box .form-row {
    flex-direction: column;
  }
}
.hero .signup-box input[type=email] {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  color: #111827;
  background: #f9fafb;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hero .signup-box input[type=email]::placeholder {
  color: #9ca3af;
}
.hero .signup-box input[type=email]:focus {
  border-color: var(--accent);
  background: #ffffff;
}
.hero .signup-box .btn-primary {
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.hero .signup-box .btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.35);
}
.hero .signup-box .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.hero .signup-box .message {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.hero .signup-box .message--success {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.hero .signup-box .message--error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.hero .signup-box .message--info {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid #ddd6fe;
}
.hero .signup-box .privacy-note {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.features {
  padding: 5rem 0;
}
.features .section-label {
  text-align: center;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.features h2 {
  text-align: center;
  color: var(--accent);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
}
.features .pricing-note {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  max-width: 480px;
  margin: -2rem auto 3rem;
}
.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.features .grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}
.features .grid--pricing {
  align-items: start;
}
.features .card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(var(--accent-rgb), 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.features .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.14);
}
.features .card .icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.features .card h3 {
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.features .card p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.65;
}
.features .card .text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.features .card .text-link:hover {
  text-decoration: underline;
}
.features .pricing-custom {
  margin-top: 1.5rem;
}
.features .pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.features .pricing-card--featured {
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.18);
  border: 2px solid var(--accent);
}
.features .pricing-badge {
  position: absolute;
  top: -0.75rem;
  right: 2rem;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.features .pricing-audience {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.features .pricing-list {
  list-style: none;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.features .pricing-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.65;
}
.features .pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.features .pricing-list li + li {
  margin-top: 0.5rem;
}
.features.trust {
  background: var(--section-bg);
  color: var(--on-section-bg);
  transition: background 0.2s ease, color 0.2s ease;
}
.features.trust .section-label {
  color: rgba(var(--on-section-bg-rgb), 0.6);
}
.features.trust h2 {
  color: var(--section-title);
}

.problem {
  padding: 5rem 0;
  background: var(--problem-bg);
  color: var(--on-problem-bg);
  transition: background 0.2s ease, color 0.2s ease;
}
.problem .section-label {
  text-align: center;
  color: rgba(var(--on-problem-bg-rgb), 0.6);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.problem h2 {
  text-align: center;
  color: var(--section-title);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.problem .problem-text {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: rgba(var(--on-problem-bg-rgb), 0.85);
  font-size: 1.05rem;
  line-height: 1.75;
}
.problem .stat-contrast {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.problem .stat {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.5rem 2rem;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(var(--accent-rgb), 0.07);
}
.problem .stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: #6b7280;
}
.problem .stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.25rem;
}
.problem .stat--after .problem .stat-value {
  color: var(--accent);
}
.problem .stat-arrow {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--on-problem-bg);
}

.how-it-works {
  padding: 5rem 0;
  background: var(--section-bg);
  color: var(--on-section-bg);
  transition: background 0.2s ease, color 0.2s ease;
}
.how-it-works .section-label {
  text-align: center;
  color: rgba(var(--on-section-bg-rgb), 0.6);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.how-it-works h2 {
  text-align: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--section-title);
}
.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  counter-reset: steps;
}
.how-it-works .step {
  text-align: center;
}
.how-it-works .step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--highlight);
  color: var(--on-highlight);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.how-it-works .step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--on-section-bg);
}
.how-it-works .step p {
  color: rgba(var(--on-section-bg-rgb), 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-page {
  padding: 3rem 0 5rem;
}
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #b976e5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.legal-page .back-link:hover {
  text-decoration: underline;
}
.legal-page h1 {
  color: #b976e5;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.legal-page .page-subtitle {
  color: #b976e5;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.legal-page .last-updated {
  color: #9ca3af;
  font-size: 0.85rem;
  margin-bottom: 3rem;
}

.legal-section {
  background: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 16px rgba(185, 118, 229, 0.07);
}
.legal-section h2 {
  color: #b976e5;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.legal-section p,
.legal-section address {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: normal;
}
.legal-section p + p {
  margin-top: 0.75rem;
}
.legal-section ol,
.legal-section ul {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.legal-section li + li {
  margin-top: 0.4rem;
}
.legal-section a {
  color: #b976e5;
  text-decoration: none;
}
.legal-section a:hover {
  text-decoration: underline;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ede9fe;
  color: #b976e5;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 0.5rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.placeholder {
  background: #ede9fe;
  color: #b976e5;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.site-footer {
  background: #fad27c;
  color: #a657db;
  padding: 24px clamp(20px, 5vw, 60px);
  font-weight: 700;
  border-top: 3px solid #6b7280;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  color: #a657db;
  text-decoration: none;
  font-weight: 700;
}
.footer-links a:hover {
  color: #b976e5;
  text-decoration: underline;
}

/*# sourceMappingURL=newsletter.css.map */
