/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #3e1025;
  --red-light:  #B47594;
  --grey:       #656169;
  --dark:       #1a1a1a;
  --white:      #FFFFFF;
  --light:      #f8f6f7;
  --accent:     #f0eaec;
  --font:       'Inter', sans-serif;
  --radius:     8px;
  --shadow:     0 8px 32px rgba(62,16,37,.12);
  --tr:         .25s ease;
  --max:        1200px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--grey); background: var(--white); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* === BUTTONS === */
.btn {
  display: inline-block; padding: 13px 30px;
  border-radius: var(--radius); font-weight: 700;
  font-size: .95rem; cursor: pointer;
  transition: var(--tr); border: 2px solid transparent;
}
.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: #2a0b1a; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--accent { background: var(--red-light); color: var(--white); }
.btn--accent:hover { background: #9d6280; transform: translateY(-2px); }
.btn--outline { border-color: var(--red); color: var(--red); background: transparent; }
.btn--outline:hover { background: var(--red); color: var(--white); }
.btn--white { background: var(--white); color: var(--red); }
.btn--white:hover { background: var(--accent); }
.btn--white-outline { border-color: rgba(255,255,255,.5); color: var(--white); background: transparent; }
.btn--white-outline:hover { background: rgba(255,255,255,.1); }
.btn--nav { background: var(--red-light); color: var(--white); padding: 9px 22px; font-size: .88rem; }
.btn--nav:hover { background: #9d6280; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--red);
  box-shadow: 0 2px 16px rgba(62,16,37,.3);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-weight: 500; font-size: .92rem; color: rgba(255,255,255,.85); transition: color var(--tr); }
.nav__links a:hover { color: var(--white); }
.nav__burger { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--white); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--red) 0%, #2a0b1a 60%, #1a0810 100%);
  color: var(--white); padding: 90px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0zm40 40h40v40H40z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero__badge { display: inline-block; background: rgba(180,117,148,.25); border: 1px solid rgba(180,117,148,.4); color: #e8b4c8; padding: 6px 16px; border-radius: 20px; font-size: .82rem; font-weight: 700; letter-spacing: .3px; margin-bottom: 20px; }
.hero__title { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero__title em { font-style: normal; color: var(--red-light); }
.hero__sub { font-size: 1.05rem; opacity: .85; margin-bottom: 16px; }
.hero__note { font-size: .88rem; opacity: .7; margin-bottom: 36px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 28px; backdrop-filter: blur(8px);
}
.hero__card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; opacity: .9; }
.hero__fact { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero__fact:last-child { border-bottom: none; padding-bottom: 0; }
.hero__fact-icon { font-size: 1.3rem; flex-shrink: 0; }
.hero__fact-text { font-size: .88rem; opacity: .8; line-height: 1.4; }
.hero__fact-text strong { display: block; color: var(--white); opacity: 1; font-size: .95rem; }

/* === TRUST === */
.trust { background: var(--accent); border-bottom: 1px solid #e0d5d9; padding: 28px 0; }
.trust__inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust__item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .88rem; color: var(--red); }

/* === SECTIONS === */
.section { padding: 80px 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--dark); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }
.section__tag { display: inline-block; background: rgba(62,16,37,.08); color: var(--red); padding: 4px 14px; border-radius: 20px; font-size: .78rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
.section--dark .section__tag, .section--red .section__tag { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.section__title { font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.section--dark .section__title, .section--red .section__title { color: var(--white); }
.section__sub { font-size: 1rem; color: #888; max-width: 580px; margin: 0 auto; }
.section--dark .section__sub, .section--red .section__sub { color: rgba(255,255,255,.75); }
.section__header { text-align: center; margin-bottom: 52px; }

/* === CARDS === */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--accent); border-radius: 12px;
  padding: 32px; transition: var(--tr); box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--red-light); }
.card__icon { font-size: 2.2rem; margin-bottom: 16px; }
.card__title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.card__text { font-size: .92rem; color: #777; line-height: 1.65; margin-bottom: 20px; }
.card__link { font-weight: 700; font-size: .88rem; color: var(--red); display: inline-flex; align-items: center; gap: 4px; }
.card__link:hover { color: var(--red-light); }

/* === ADVANTAGES === */
.advantages { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.adv { display: flex; gap: 14px; align-items: flex-start; padding: 20px; background: rgba(255,255,255,.05); border-radius: 10px; border: 1px solid rgba(255,255,255,.1); }
.adv__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.adv__title { font-weight: 700; font-size: .95rem; margin-bottom: 4px; color: var(--white); }
.adv__text { font-size: .88rem; opacity: .75; }

/* === STATS === */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; text-align: center; }
.stat__num { font-size: 2.5rem; font-weight: 800; color: var(--red-light); line-height: 1; margin-bottom: 6px; }
.stat__label { font-size: .88rem; opacity: .8; }

/* === LOGOS === */
.logos { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center; }
.logos img { height: 36px; filter: grayscale(100%) opacity(.5); transition: var(--tr); }
.logos img:hover { filter: none; opacity: 1; }

/* === TESTIMONIALS === */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 28px; }
.testimonial__text { font-size: .95rem; opacity: .85; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial__author { font-weight: 700; font-size: .88rem; color: var(--red-light); }

/* === QUOTE === */
.quote-section { background: var(--accent); padding: 80px 0; }
.quote-section__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.quote-section__img img { border-radius: 16px; box-shadow: var(--shadow); }
.quote-section__text blockquote { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--dark); line-height: 1.7; font-style: italic; margin-bottom: 24px; position: relative; padding-left: 28px; }
.quote-section__text blockquote::before { content: '\201C'; position: absolute; left: 0; top: -8px; font-size: 3rem; color: var(--red); opacity: .4; line-height: 1; }
.quote-section__author { font-weight: 700; color: var(--red); font-size: .95rem; }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--accent); border-radius: 12px; overflow: hidden; transition: var(--tr); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card__img { height: 180px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 20px; }
.blog-card__date { font-size: .78rem; color: var(--red-light); font-weight: 600; margin-bottom: 8px; }
.blog-card__title { font-size: .98rem; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 10px; }
.blog-card__teaser { font-size: .85rem; color: #888; line-height: 1.6; }

/* === PROCESS === */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px; }
.process__step { padding: 32px 24px; text-align: center; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.process__num { font-size: 2.2rem; font-weight: 800; color: var(--red-light); opacity: .6; margin-bottom: 10px; }
.process__title { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.process__text { font-size: .85rem; opacity: .7; }

/* === CTA SECTION === */
.cta-section { background: var(--red); color: var(--white); padding: 80px 0; text-align: center; }
.cta-section__title { font-size: clamp(1.6rem, 2.8vw, 2.3rem); font-weight: 800; margin-bottom: 16px; }
.cta-section__text { font-size: 1.05rem; opacity: .85; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === CONTACT === */
.contact-section { padding: 80px 0; background: var(--dark); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 20px; }
.contact-info p { font-size: .95rem; opacity: .8; margin-bottom: 12px; }
.contact-info .contact-detail { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: .95rem; }
.contact-detail span { font-size: 1.2rem; }
.contact-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; opacity: .85; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius);
  color: var(--white); font-family: var(--font); font-size: .95rem;
  transition: border-color var(--tr);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red-light); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* === FOOTER === */
.footer { background: #0f0408; color: rgba(255,255,255,.65); padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { font-size: .88rem; line-height: 1.65; }
.footer__brand a { color: rgba(255,255,255,.65); }
.footer__brand a:hover { color: var(--white); }
.footer__links h4 { color: var(--white); font-size: .82rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .88rem; transition: color var(--tr); }
.footer__links a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer__bottom p { font-size: .82rem; text-align: center; }

/* === PAGE HERO (Unterseiten) === */
.page-hero { background: linear-gradient(135deg, var(--red) 0%, #2a0b1a 100%); color: var(--white); padding: 70px 0 60px; }
.page-hero__tag { display: inline-block; background: rgba(180,117,148,.25); color: #e8b4c8; padding: 5px 14px; border-radius: 20px; font-size: .8rem; font-weight: 700; margin-bottom: 16px; }
.page-hero__title { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.page-hero__sub { font-size: 1.05rem; opacity: .85; max-width: 600px; margin-bottom: 32px; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .quote-section__inner { grid-template-columns: 1fr; }
  .quote-section__img { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--red); padding: 20px 24px; gap: 16px; }
  .nav__links.open { display: flex; }
  .nav__burger { display: block; }
  .footer__inner { grid-template-columns: 1fr; }
  .trust__inner { gap: 20px; }
  .section { padding: 56px 0; }
}
