/* ============================================================
   cre8event conception – One-Pager Stylesheet
   Farben: Orange #F47920 | Teal #2AABB8 | Rot #E63329
   ============================================================ */

:root {
  --orange:   #F47920;
  --teal:     #2AABB8;
  --red:      #E63329;
  --dark:     #1a1a2e;
  --dark2:    #16213e;
  --mid:      #2a2a4a;
  --light:    #f8f9fb;
  --white:    #ffffff;
  --text:     #333344;
  --muted:    #666680;
  --border:   #e0e4ef;
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:0 8px 48px rgba(0,0,0,.15);
  --transition: .25s ease;
  --max-w:    1100px;
  --font:     'Inter', system-ui, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,46,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26,26,46,.98);
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav:hover { background: #d9670f !important; transform: translateY(-1px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(26,26,46,.98);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.open { display: flex; }
.mm-link {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.mm-link:hover { color: var(--orange); }
.mm-cta {
  margin-top: 12px;
  background: var(--orange);
  color: var(--white) !important;
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0d2137 100%);
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(244,121,32,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(42,171,184,.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 620px;
  margin: 0 auto 0 0;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(244,121,32,.18);
  color: var(--orange);
  border: 1px solid rgba(244,121,32,.35);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(244,121,32,.35);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #d9670f;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(244,121,32,.45);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.3);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-full { width: 100%; text-align: center; }

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: .18;
}
.hero-icon {
  width: clamp(200px, 28vw, 420px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(244,121,32,.4));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 80px 0; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   INTRO
   ============================================================ */
.intro { background: var(--light); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.intro-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.3;
}
.intro-text p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: .97rem;
}
.intro-benefits { display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-item:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,.10); }
.benefit-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
.benefit-item p { font-size: .9rem; color: var(--text); margin: 0; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen { background: var(--white); }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.leistung-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
}
.leistung-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.leistung-img-wrap {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
}
.leistung-img-wrap img { width: 72px; height: 72px; object-fit: contain; }
.leistung-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.leistung-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   PROZESS
   ============================================================ */
.prozess { background: var(--dark); }
.prozess .section-header h2 { color: var(--white); }
.prozess .section-label { color: var(--teal); }
.prozess .section-header p { color: rgba(255,255,255,.6); }

.prozess-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.step:hover {
  background: rgba(244,121,32,.10);
  border-color: rgba(244,121,32,.35);
}
.step-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
  line-height: 1;
}
.step-content h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-content p {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.step-arrow {
  color: var(--orange);
  font-size: 1.8rem;
  align-self: center;
  opacity: .6;
  flex-shrink: 0;
}

/* ============================================================
   FORMATE
   ============================================================ */
.formate { background: var(--light); }
.formate-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.format-tag {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
  cursor: default;
}
.format-tag:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.about-text .section-label { display: block; margin-bottom: 8px; }
.about-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.about-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px !important;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: .97rem;
}
.about-logo {
  width: 200px;
  height: auto;
  opacity: .9;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt { background: var(--light); }
.kontakt-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.kontakt-info { display: flex; flex-direction: column; gap: 24px; }
.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.kontakt-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kontakt-item strong {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.kontakt-item a, .kontakt-item span {
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}
.kontakt-item a:hover { color: var(--orange); }

/* Form */
.kontakt-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,121,32,.12);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: .82rem;
  color: var(--muted);
}
.form-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--orange);
  width: 16px; height: 16px;
}
.form-check a { color: var(--orange); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 40px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-logo img { height: 56px; width: auto; opacity: .85; }
.footer-claim {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--orange); }
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero {
    padding: 90px 24px 60px;
    text-align: center;
  }
  .hero-content { margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-visual { display: none; }

  .intro-grid { grid-template-columns: 1fr; gap: 32px; }

  .leistungen-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .prozess-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }

  .kontakt-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 56px 0; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .kontakt-form { padding: 24px 18px; }
}
