/* ============================================
   FIXHANDS — Global Styles
   Farben: #252525 (Dark), #51acfb (Blau), #dd1515 (Rot), #fff
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark: #252525;
  --blue: #51acfb;
  --red: #dd1515;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text: #333333;
  --text-light: #999999;
  --font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --max-w: 1200px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --transition: .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--gray { background: var(--light-gray); }
.section--blue { background: var(--blue); color: var(--white); }

.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 12px; }
p { margin-bottom: 16px; }

.section-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn--blue { background: var(--blue); color: var(--white); }
.btn--blue:hover { background: #3a9ae8; color: var(--white); }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: #c41010; color: var(--white); }
.btn--outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--dark); }
.btn--dark { background: var(--dark); color: var(--white); }
.btn--dark:hover { background: #111; color: var(--white); }

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--dark);
  color: var(--white);
  padding: 8px 0;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar a { color: var(--blue); font-weight: 600; }
.topbar .btn--blue {
  background: var(--blue);
  color: var(--white) !important;
  padding: 6px 16px;
  font-size: .8rem;
  border-radius: var(--radius);
  font-weight: 700;
  display: inline-block;
}
.topbar .btn--blue:hover { background: #3a9ae8; }

/* ---------- Header / Nav ---------- */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
}
.logo span { color: var(--blue); }
.logo img { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--dark);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a:hover { color: var(--blue); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 12px 0;
  z-index: 100;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: .85rem;
  text-transform: none;
}
.dropdown a:hover { background: var(--light-gray); }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
  position: absolute;
  left: 0;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(81,172,251,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero h1 { margin-bottom: 24px; max-width: 800px; }
.hero h1 span { color: var(--blue); }
.hero p { font-size: 1.1rem; max-width: 700px; opacity: .9; margin-bottom: 12px; }
.hero-ctas { margin-top: 32px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
}
.hero-phone svg { width: 20px; height: 20px; fill: var(--blue); }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 30px;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--blue);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
.service-card h3 { color: var(--dark); }
.service-card p { color: var(--text-light); font-size: .95rem; }
.service-card .btn { margin-top: 16px; }

/* ---------- Zielgruppen / B2B ---------- */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.target-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}
.target-card h3 { color: var(--blue); }

/* ---------- Counter / Stats ---------- */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: .9rem;
  margin-top: 8px;
  opacity: .8;
}

/* ---------- USP Grid ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.usp-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.usp-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-icon svg { width: 22px; height: 22px; fill: var(--white); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--blue);
  opacity: .2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial p { font-style: italic; margin-bottom: 12px; padding-top: 20px; }
.testimonial-author {
  font-weight: 700;
  font-size: .85rem;
  color: var(--blue);
}
.stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 8px; }

/* ---------- Vorteile-Liste ---------- */
.vorteile-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}
.vorteile-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
}
.vorteile-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 8px;
}

/* ---------- Team Grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--light-gray);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--blue);
  font-weight: 700;
}
.team-photo-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 12px;
  border: 3px solid var(--blue);
}
.team-card h4 { font-size: .95rem; margin-bottom: 4px; }
.team-card span { font-size: .8rem; color: var(--text-light); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--blue);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 8px; }
.cta-banner p { font-size: 1.1rem; opacity: .9; margin-bottom: 24px; }

/* ---------- Kontakt-Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-info-card h3 { margin-bottom: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info-item svg { flex-shrink: 0; width: 20px; height: 20px; fill: var(--blue); margin-top: 2px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--blue); }
.footer ul li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: .85rem;
}
.footer-notdienst {
  background: var(--red);
  color: var(--white);
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-top: 12px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--dark);
  padding: 60px 0 30px;
  color: var(--white);
}
.breadcrumb h1 { margin-bottom: 8px; }
.breadcrumb-nav { font-size: .9rem; opacity: .7; }
.breadcrumb-nav a { color: var(--blue); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow); gap: 16px; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-item .dropdown { position: static; box-shadow: none; display: none; padding-left: 16px; }

  .hero { padding: 60px 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; }

  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 30px; }
  .stat-number { font-size: 2.2rem; }
  .vorteile-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
}
