/* SUV Marketing — statischer Rebuild (Werte aus Browser-Messung am Original) */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/ibm-plex-sans-var.woff2') format('woff2');
  font-weight: 100 700;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans Condensed';
  src: url('../fonts/ibm-plex-sans-condensed-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans Condensed';
  src: url('../fonts/ibm-plex-sans-condensed-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

/* ---------- Tokens / Reset ---------- */
:root {
  --navy: #253439;
  --slate: #435761;
  --slate-dark: #0A2E3D;
  --beige: #B29E86;
  --gray: #8C8C8C;
  --line: #CCCCCC;
  --bg-soft: #FAFAFA;
  --sans: 'IBM Plex Sans', Helvetica, Arial, Lucida, sans-serif;
  --cond: 'IBM Plex Sans Condensed', Helvetica, Arial, Lucida, sans-serif;
  --roboto: Roboto, Helvetica, Arial, Lucida, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--gray);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--beige); text-decoration: none; }
a:hover { opacity: .85; }
h1, h2, h3, h4, h5, h6 { font-family: var(--cond); font-weight: 500; color: var(--navy); line-height: 1; }
.container { width: 80%; max-width: 1080px; margin: 0 auto; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

.btn {
  display: inline-block;
  background: var(--slate);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.7;
  padding: 15px 48px;
  border-radius: 0;
  transition: background .3s, color .3s;
}
.btn:hover { background: #fff; color: var(--slate-dark); opacity: 1; box-shadow: inset 0 0 0 1px var(--slate); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  padding: 35px 0;
}
.header-grid { display: flex; align-items: center; gap: 30px; }
.logo img { width: 160px; }
.header-contact { display: flex; flex: 1; justify-content: center; gap: 90px; }
.contact-blurb { display: flex; align-items: flex-start; gap: 18px; color: var(--navy); }
.contact-blurb svg { width: 32px; height: 32px; fill: var(--beige); flex: none; margin-top: 2px; }
.contact-blurb .cb-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  padding-bottom: 8px;
  color: var(--navy);
}
.contact-blurb .cb-value { font-family: var(--roboto); font-size: 15px; font-weight: 300; line-height: 1; color: var(--navy); }
.header-mobile-icons { display: none; }

/* ---------- Hero-Slider ---------- */
.hero { position: relative; }
.divider-bottom { position: relative; }
.divider-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: scale(-1, 1);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNGRkZGRkYiPjxwYXRoIGQ9Ik0wIDB2MTQwaDEyODBMMCAweiIgZmlsbC1vcGFjaXR5PSIuNSIvPjxwYXRoIGQ9Ik0wIDQydjk4aDEyODBMMCA0MnoiLz48L2c+PC9zdmc+");
  z-index: 5;
}
.slides { display: grid; }
.slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s;
  background:
    linear-gradient(180deg, rgba(37, 52, 57, .73) 0%, rgba(37, 52, 57, .94) 100%),
    url('../img/hero-business-consulting.jpg') center / cover no-repeat;
  text-align: center;
  padding: 183px 84px 172px;
}
.slide.is-active { opacity: 1; visibility: visible; }
.slide-inner { max-width: 520px; margin: 0 auto; }
.slide p.slide-kicker {
  font-family: var(--cond);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
  color: #ccc;
  padding-bottom: 10px;
}
.slide h2 { font-size: 4rem; color: #fff; padding-bottom: 10px; }
.slide p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, .59);
  padding-bottom: 16px;
}
.slide .btn-slide {
  display: inline-block;
  background: var(--beige);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 30px;
  transition: background .3s, color .3s;
}
.slide .btn-slide:hover { background: #fff; opacity: 1; }
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 6;
}
.slider-dots button { width: 7px; height: 7px; border-radius: 7px; background: rgba(255, 255, 255, .5); padding: 0; }
.slider-dots button.is-active { background: #fff; }
.slider-arrow {
  position: absolute;
  top: 42%;
  z-index: 6;
  color: rgba(255, 255, 255, .8);
  font-size: 48px;
  line-height: 1;
  padding: 10px;
  opacity: 0;
  transition: opacity .3s;
}
.hero:hover .slider-arrow { opacity: 1; }
.slider-arrow.prev { left: 25px; }
.slider-arrow.next { right: 25px; }

/* ---------- Sektionen allgemein ---------- */
.section { padding: 54px 0; }
.section-page { padding: 108px 0 54px; }
.section-soft { background: var(--bg-soft); }

/* Über meine Person */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 27px 0; }
.kicker {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  color: var(--beige);
  margin-top: 20px;
  padding-bottom: 10px;
}
.about-name { font-family: var(--cond); font-size: 38px; font-weight: 500; line-height: 1.5; color: var(--navy); margin: 5px 0 25px; }
.check-list { list-style: none; margin-bottom: 30px; }
.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--gray);
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}
.check-list svg { width: 14px; height: 14px; fill: var(--beige); flex: none; margin-top: 6px; }
.about-btn { margin-top: 25px; }
.portrait { border-radius: 100%; overflow: hidden; max-width: 450px; margin: 0 auto; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: 27px 0; }
.service-card { text-align: center; padding: 16px 0; }
.service-icon {
  width: 88px;
  height: 88px;
  border-radius: 100%;
  background: var(--beige);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.service-icon svg { width: 38px; height: 38px; fill: #fff; }
.service-card h4 { font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; padding-bottom: 10px; }
.service-card p { font-size: 18px; font-weight: 300; line-height: 23.8px; padding-bottom: 18px; }
.link-more { font-size: 18px; font-weight: 600; line-height: 23.8px; text-transform: uppercase; color: var(--beige); }

/* ---------- Leistungen ---------- */
.detail-block { max-width: 550px; margin: 0 auto 30px; padding: 32px 0; }
.detail-block h4 { font-size: 28px; padding-bottom: 10px; }
.detail-block p { font-size: 18px; font-weight: 300; line-height: 1.6; padding-bottom: 18px; }
.social-follow { max-width: 550px; margin: 0 auto; display: flex; gap: 8px; padding: 0 0 32px; }
.social-follow a { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; border-radius: 3px; }
.social-follow svg { width: 16px; height: 16px; fill: var(--beige); }

/* ---------- Kontakt-Formular ---------- */
.form-title { font-size: 26px; padding-bottom: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #eee;
  border: 0;
  padding: 16px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 3%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input.error, .contact-form textarea.error { outline: 1px solid #c0392b; }
.dsgvo { font-size: 14px; color: var(--gray); padding-bottom: 20px; }
.dsgvo a { text-decoration: underline; color: var(--gray); font-weight: 700; }
.form-footer { display: flex; justify-content: flex-end; }
.btn-submit {
  background: var(--slate);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 30px;
  transition: background .3s, color .3s;
}
.btn-submit:hover { background: #fff; color: var(--slate-dark); box-shadow: inset 0 0 0 1px var(--slate); }
.form-message { color: var(--navy); padding-bottom: 14px; font-weight: 600; }

/* ---------- Rechtsseiten ---------- */
.legal h1 { font-size: 30px; padding-bottom: 16px; }
.legal h2 { font-size: 26px; padding-bottom: 10px; padding-top: 14px; }
.legal h3 { font-size: 22px; padding-bottom: 10px; padding-top: 10px; }
.legal h4 { font-size: 18px; padding-bottom: 10px; }
.legal p { padding-bottom: 14px; }
.legal ul { margin: 0 0 14px 20px; }
.legal a { color: var(--beige); word-break: break-word; }

/* ---------- Footer-CTA ---------- */
.cta {
  position: relative;
  background: var(--beige);
  color: #fff;
  padding: 15vh 0 5vh;
}
.cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 100px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  transform: scale(-1, 1);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDBweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNGQUZBRkEiPjxwYXRoIGQ9Ik0xMjgwIDE0MFYwSDBsMTI4MCAxNDB6IiBmaWxsLW9wYWNpdHk9Ii41Ii8+PHBhdGggZD0iTTEyODAgOThWMEgwbDEyODAgOTh6Ii8+PC9nPjwvc3ZnPg==");
}
.cta-grid { display: grid; grid-template-columns: 29.6% 64.8%; gap: 5.6%; align-items: start; }
.cta-logo img { width: 200px; }
.cta-title { font-size: 18px; line-height: 1.6; padding-bottom: 10px; }
.cta-title strong, .modal-box strong, .legal strong { font-weight: 700; }
.cta-text p { font-size: 18px; font-weight: 300; line-height: 1.6; padding-bottom: 14px; }
.contact-list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 40px; }
.contact-list li { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 500; line-height: 30.6px; }
.contact-list a, .contact-list button { color: #fff; font-size: 18px; font-weight: 500; }
.contact-list svg { width: 14px; height: 14px; fill: #fff; flex: none; }
.contact-list .full { flex-basis: 100%; }

/* ---------- Footer-Bottom ---------- */
.footer-bottom { background: var(--navy); padding: 25px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-family: var(--roboto); font-size: 15px; font-weight: 500; line-height: 1; color: #fff; }
.footer-bottom a { color: #fff; }
.footer-bottom .sep { color: var(--slate); padding: 0 12px; }
.footer-bottom .credit { color: var(--slate); }
.footer-bottom .credit a { color: #fff; }

/* ---------- Modals ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .8); }
.modal-box {
  position: relative;
  background: #fff;
  max-width: 680px;
  margin: 5vh auto;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
}
.modal-box h4 { font-size: 28px; padding-bottom: 10px; }
.modal-box p, .modal-box li { font-size: 18px; font-weight: 300; line-height: 1.6; color: var(--gray); }
.modal-box p { padding-bottom: 18px; }
.modal-box ul { margin: 0 0 18px 20px; }
.modal-box .link-more { display: inline-block; }
.modal-box .form-title { font-size: 22px; }
.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 28px;
  line-height: 1;
  color: rgba(0, 0, 0, .65);
  padding: 8px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .header-contact, .header-actions { display: none; }
  .site-header { padding: 25px 0 15px; }
  .logo img { width: 130px; }
  .header-grid { justify-content: space-between; }
  .header-mobile-icons { display: flex; gap: 12px; }
  .header-mobile-icons a, .header-mobile-icons button {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    background: var(--beige);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-mobile-icons svg { width: 17px; height: 17px; fill: #fff; }
  .about-grid, .services-grid, .cta-grid { grid-template-columns: 1fr; gap: 30px; }
  .slide { padding: 100px 38px 172px; }
  .portrait { max-width: 300px; margin: 0; }
}
@media (max-width: 767px) {
  .slide { padding: 70px 8% 225px; }
  .slide h2 { font-size: 2rem; }
  .about-name { font-size: 30px; }
  .footer-bottom .container { flex-direction: column; gap: 12px; }
  .modal-box { margin: 3vh 12px; }
}
