/* Trial Landing /jetzt-starten — A/B Test */

.landing-page {
  font-family: 'Roboto', system-ui, sans-serif;
  background: linear-gradient(160deg, #f4f7fb 0%, #e8eef5 100%);
  min-height: 100vh;
  color: #1B3A5B;
  margin: 0;
}

.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #1B3A5B;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.landing-header__logo img {
  border-radius: 8px;
}

.landing-header__login {
  color: #1B3A5B;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid #1B3A5B;
  border-radius: 8px;
  transition: background 0.2s;
}

.landing-header__login:hover {
  background: #1B3A5B;
  color: #fff;
}

.landing-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.landing-footer {
  text-align: center;
  padding: 1.5rem 1.5rem 2rem;
  color: #6b7c93;
  font-size: 0.875rem;
}

.landing-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}

.landing-footer__legal a {
  color: #1B3A5B;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-footer__legal a:hover {
  color: #185FA5;
}

.landing-footer__copy {
  margin: 0;
}

.landing-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .landing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Badges */
.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.landing-badge--gold {
  background: #F0A500;
  color: #1B3A5B;
}

.landing-badge--blue {
  background: #185FA5;
  color: #fff;
}

.landing-badge__dot {
  width: 8px;
  height: 8px;
  background: #1B3A5B;
  border-radius: 50%;
  animation: landing-pulse 1.5s ease-in-out infinite;
}

@keyframes landing-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-badge .material-symbols-outlined {
  font-size: 1.125rem;
}

/* Hero */
.landing-hero__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: #1B3A5B;
}

.landing-hero__lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a6278;
  margin: 0 0 1.5rem;
}

/* Benefits */
.landing-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.landing-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}

.landing-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Material Symbols Outlined';
  font-size: 0.875rem;
  color: #fff;
}

.landing-check--green { background: #1D9E75; }
.landing-check--blue { background: #185FA5; }

/* Addon banner */
.landing-addon-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #F0A50022;
  border: 1px solid #F0A500;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #1B3A5B;
  margin-bottom: 2rem;
}

.landing-addon-banner .material-symbols-outlined {
  color: #F0A500;
}

/* Social proof */
.landing-social__stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

.landing-social__stats strong {
  font-size: 1.25rem;
  color: #1B3A5B;
}

.landing-stars {
  color: #F0A500;
  letter-spacing: 2px;
}

.landing-testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin: 0 0 1rem;
  border-left: 4px solid #1B3A5B;
  box-shadow: 0 2px 8px rgba(27, 58, 91, 0.08);
}

.landing-testimonial p {
  margin: 0 0 0.5rem;
  font-style: italic;
  line-height: 1.5;
}

.landing-testimonial cite {
  font-size: 0.8125rem;
  color: #6b7c93;
  font-style: normal;
}

/* Form card */
.landing-form-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(27, 58, 91, 0.12);
  overflow: hidden;
}

.landing-form-card__header {
  padding: 1.25rem 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.landing-form-card__header--a {
  background: #1B3A5B;
}

.landing-form-card__header--a strong {
  display: block;
  font-size: 1.125rem;
}

.landing-form-card__header--a span {
  font-size: 0.875rem;
  opacity: 0.85;
}

.landing-form-card__header--b {
  background: #185FA5;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.landing-form-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.landing-form-card__amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.landing-form-card__period {
  font-size: 1rem;
  opacity: 0.9;
}

/* Form */
.landing-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.landing-form input[type="text"],
.landing-form input[type="email"],
.landing-form input[type="password"] {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d0d9e4;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.landing-form input:focus {
  outline: none;
  border-color: #1B3A5B;
  box-shadow: 0 0 0 3px rgba(27, 58, 91, 0.12);
}

.landing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 0.5rem;
}

.landing-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.landing-cta--green {
  background: #1D9E75;
  color: #fff;
}

.landing-cta--blue {
  background: #185FA5;
  color: #fff;
}

.landing-form-note {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  font-size: 0.75rem;
  color: #6b7c93;
  text-align: center;
}

.landing-form-note--secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.landing-form-note--secure .material-symbols-outlined {
  font-size: 1rem;
  color: #1D9E75;
}

.landing-alert {
  margin: 1rem 1.5rem 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
}

.landing-alert--error {
  background: #fde8e8;
  color: #9b1c1c;
  border: 1px solid #f5c6c6;
}

/* Success page */
.landing-success {
  max-width: 520px;
  margin: 3rem auto;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(27, 58, 91, 0.12);
}

.landing-success__icon .material-symbols-outlined {
  font-size: 4rem;
  color: #1D9E75;
}

.landing-success h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  color: #1B3A5B;
  margin: 1rem 0;
}

.landing-success p {
  color: #4a6278;
  line-height: 1.6;
}

.landing-success__email {
  margin: 1rem 0 1.5rem;
  font-size: 0.9375rem;
}

.landing-success .landing-cta {
  display: inline-flex;
  width: auto;
  padding: 0.875rem 2rem;
}
