/* ===== Hero ===== */

.hero {
  background:
    radial-gradient(
      circle at top right,
      rgba(0,0,0,0.03),
      transparent 35%
    ),
    linear-gradient(
      to bottom,
      #ffffff,
      #f8f9fa
    );

  padding: 120px 0;
}

.hero__title {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 3rem;
}

.hero__tagline {
  font-size: 1.6rem;
  font-weight: 700;
}

.hero__subtitle {
  max-width: 600px;
  margin: 0 0 2rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hero__content {
  max-width: 620px;
  padding-top: 0.25rem;
}

.hero__visual {
  position: relative;
  transform: scale(1.04);
}

.hero__visual::before {
  content: '';

  position: absolute;

  inset: 8%;

  background:
    radial-gradient(
      circle,
      rgba(0,0,0,0.06),
      transparent 70%
    );

  filter: blur(40px);

  z-index: 0;
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  box-shadow:
    0 10px 40px rgba(0,0,0,0.08),
    0 30px 80px rgba(0,0,0,0.10);
  border: 1px solid rgba(0,0,0,0.06);
}

@media (max-width: 980px) {

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero__visual {
    order: -1;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero__title {
    max-width: 700px;
    font-size: 1.75rem;
  }

}

/* ===== Buttons ===== */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s ease;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
}


/* ===== Typography ===== */

h1 {
  line-height: 1.2;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ===== Problem ===== */

.problem {
  text-align: center;
  padding: 3.5rem 0;
}

.problem__title {
  margin-bottom: 1rem;
}

.problem__intro {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.problem__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.problem__item h3 {
  margin-bottom: 0.5rem;
}

.problem__outro {
  margin-top: 3rem;
  font-weight: 500;
}

.problem__item {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}

.problem__image {
  height: 220px;
  margin-bottom: 1rem;
  padding: 1rem;
  overflow: hidden;
  border-radius: 10px;
  background: #FFFFFF;

  display: flex;
  align-items: center;
  justify-content: center;
}

.problem__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== Solution ===== */

.solution {
  text-align: center;
  padding: 4.5rem 0;
}

.solution__title {
  margin-bottom: 1rem;
}

.solution__intro {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.solution__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.solution__item h3 {
  margin-bottom: 0.5rem;
}

.solution__outro {
  margin-top: 3rem;
  font-weight: 500;
}

.solution__item {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}

.solution__image {
  height: 220px;
  margin-bottom: 1rem;
  padding: 0rem;
  overflow: hidden;
  border-radius: 0px;
  background: #FFFFFF;

  display: flex;
  align-items: center;
  justify-content: center;
}

.solution__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== Benefits ===== */

.benefits {
  text-align: center;
}

.benefits__title {
  margin-bottom: 2.25rem;
}

.benefits__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

/* Tablet */
@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .benefits__grid {
    grid-template-columns: 1fr;
  }
}

.benefit {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 8px;
}

.benefit__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit h3 {
  margin-bottom: 0.5rem;
}

/* ===== System ===== */

.system {
  text-align: center;
}

.system__title {
  margin-bottom: 1rem;
}

.system__intro {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.system__flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.system__step {
  max-width: 220px;
}

.system__number {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.system__arrow {
  font-size: 1.5rem;
}

.arrow-mobile {
  display: none;
}

.system__outro {
  margin-top: 3rem;
  font-weight: 500;
}

@media (max-width: 768px) {

  .system__flow {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .system__arrow {
    font-size: 1.75rem;
    line-height: 1;
  }
  
  .arrow-desktop {
    display: none;
  }

  .arrow-mobile {
    display: inline;
  }

}

/* ===== Monetization ===== */

.monetization {
  text-align: center;
}

.monetization__title {
  margin-bottom: 1rem;
}

.monetization__intro {
  margin-bottom: 3rem;
}

.monetization__examples {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 2.25rem;
}

.example {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 8px;
}

.example__title {
  margin-bottom: 1rem;
}

.example__title span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
}

.example__profit {
  font-weight: bold;
  margin-top: 0.5rem;
}

.monetization__scenario {
  max-width: 700px; /* before 600px */
  margin: 0 auto 2rem;
}

.scenario__highlight {
  font-weight: 600;
  margin-top: 1rem;
}

.monetization__outro {
  font-weight: 500;
}

.monetization__visual {
  margin: 0 auto 3rem;
  max-width: 1000px;
}

.monetization__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.monetization__example-image {
  margin-top: 2rem;
}

.monetization__example-image img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
}

/* ===== Process ===== */

.process {
  text-align: center;
  padding-top: 3.5rem;
}

.process__title {
  margin-bottom: 1rem;
}

.process__intro {
  margin-bottom: 3rem;
}

.process__steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.process__step {
  padding: 1.5rem;
}

.process__number {
  display: none;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.process__outro {
  margin-top: 3rem;
  font-weight: 500;
}

.process__image-wrapper {
  height: 220px;
  margin-bottom: 1rem;
  padding: 1rem;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.process__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ===== Pricing ===== */

.pricing {
  text-align: center;
}

.pricing__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.pricing__title {
  margin-bottom: 1rem;
}

.pricing__intro {
  max-width: 900px; /* before 700px */
  margin: 0 auto 3rem;
}

.pricing__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing__card {
  background: #fff;
  padding: 2.25rem;
  border: 1px solid rgba(0,0,0,0.06); /*before border: 1px solid #eee;*/
  border-radius: 14px; /*before 10px*/
  text-align: left;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 8px 24px rgba(0,0,0,0.04);

}

.pricing__card--highlight {
  border: 2px solid #111;

  background:
    linear-gradient(
      to bottom,
      #ffffff,
      #f5f7fa
    );

  box-shadow:
    0 2px 6px rgba(0,0,0,0.04),
    0 18px 50px rgba(0,0,0,0.10);

  transform: scale(1.02);
}

.pricing__name {
  font-size: 1.25rem;
  margin: 0;
}

.pricing__price {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.pricing__description {
  margin-bottom: 1rem;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.pricing__features li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.5;
}

.pricing__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.pricing__target {
  font-size: 0.95rem;
  opacity: 0.7;
}

.pricing__outro {
  margin-top: 3rem;
  font-weight: 500;
}

.pricing__badge {
  display: inline-flex;
  align-items: center;

  background: #000;
  color: #fff;

  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;

  border-radius: 4px;

  margin-bottom: 0; /* entfernen */
}

.pricing__cta {
  margin-top: 1.5rem;
}

/* ===== Trust ===== */

.trust {
  text-align: center;
}

.trust__title {
  margin-bottom: 1rem;
}

.trust__intro {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.trust__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.trust__item h3 {
  margin-bottom: 0.5rem;
}

.trust__outro {
  margin-top: 3rem;
  font-weight: 500;
}

.trust__visual {
  margin: 0 auto 4rem;
  max-width: 1000px;
}

.trust__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ===== FAQ ===== */

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

.faq__title {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__item {
  border-bottom: 1px solid #eee;
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  font-size: 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.faq__answer {
  display: none;
  padding-bottom: 1rem;
}

.faq__visual {
  margin: 3rem auto 0;
  max-width: 1000px;
}

.faq__visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ===== CTA ===== */

.cta {
  text-align: center;
  padding: 5rem 0;
}

.cta__title {
  margin-bottom: 1rem;
}

.cta__subtitle {
  max-width: 850px;
  margin: 0 auto 2rem;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta__trust {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== Navigation ===== */

.nav {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
  padding: 24px 0;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav__phone {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.nav__phone:hover {
  opacity: 0.7;
}

.nav__logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav__logo-text {
  margin-top: 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #333333;
}

.nav__logo {
  height: clamp(55px, 6vw, 85px);
  width: auto;
  display: block;
}

.nav__actions .btn {
  font-size: 0.9rem;
}

.nav__branding {
  display: flex;
  align-items: center;
}

.nav__logo-link {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav__divider {
  width: 1px;
  height: 42px;
  background: #d9d9d9;
  display: block;
}

@media (max-width: 768px) {

  .nav {
    padding: 18px 0;
  }

  .nav__inner {
    flex-direction: column;
    gap: 18px;
  }

  .nav__logo-link {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .nav__divider {
    display: none;
  }

  .nav__brand-text {
    align-items: center;
    text-align: center;
    margin-top: 0;
  }

  .nav__subtitle {
    font-size: 15px;
    text-align: center;
  }
  
  .nav__actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav__phone {
    font-size: 0.95rem;
  }

}

/* ===== Form ===== */

.cta__form-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cta__form-trust {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.cta__form {
  max-width: 420px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
  
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta__form input {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.cta__form select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.cta__form input,
.cta__form select {
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.cta__form input:focus,
.cta__form select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

.cta__form .btn {
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.cta__note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.cta__success {
  display: none;
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #f9f9f9;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ===== Image Zoom ===== */

.zoomable {
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.zoomable:hover {
  transform: scale(1.02);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 9999;
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 100%;
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 30px;
  color: #000;
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}

.lightbox__content {
  max-width: 1600px;
  width: 98%;
  text-align: center;
}

.lightbox__caption {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* ===== Footer ===== */

.footer {
  background: #111;
  color: #fff;
  padding: 5rem 0 2rem;
  margin-top: 0rem;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer__brand {
  max-width: 420px;
}

.footer__logo {
  height: 70px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;

  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}

.footer__tagline {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer__links {
  display: flex;
  gap: 5rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer__column h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #fff;
}

.footer__column a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.2s ease;
}

.footer__column a:hover {
  color: #fff;
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__bottom p {
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

.footer__company {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.7);
}

.footer__company strong {
  display: block;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer__company p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.footer__company a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer__company a:hover {
  color: #fff;
}

@media (max-width: 768px) {

  .footer {
    text-align: center;
  }

  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .footer__links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__column {
    align-items: center;
  }

  .footer__logo {
    margin: 0 auto 1.25rem;
  }

}

.problem__item,
.solution__item,
.benefit,
.example,
.process__step,
.trust__item {
  background: #fff;

  border: 1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 1px 2px rgba(0,0,0,0.03),
    0 8px 24px rgba(0,0,0,0.04);

  border-radius: 14px;
}

.problem__image img,
.solution__image img,
.process__image-wrapper img,
.monetization__visual img,
.trust__visual img,
.faq__visual img {
  border-radius: 14px;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.08);
}

.problem__item,
.solution__item,
.benefit,
.example,
.process__step,
.trust__item {
  padding: 1.75rem;
}