/* RohrSupport – Hell & klar, neues Template */
:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-alt: #f1f5f9;
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-dark: #115e59;
  --color-accent: #0891b2;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-header-bg: #ffffff;
  --color-footer-bg: #0f172a;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--color-primary-hover);
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== Header – hell, klare Linie ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-header-bg);
  box-shadow: var(--shadow);
}

.site-header .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

/* Logo-Block: links, fixe Breite, vertikal zentriert */
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}
.logo img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-badge-top,
.logo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(13, 148, 136, 0.12);
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
}
.logo-badge-top { margin-bottom: 0; }
.logo-badge { margin-left: 0; }
.logo-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-row-bottom {
  gap: 0.75rem;
  align-items: center;
}
.logo-text { color: var(--color-text); }
.cta-phone-wrap { display: inline-flex; }
.cta-phone-wrap .cta-phone { margin-left: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Navigation: eine Zeile, rechts ausgerichtet, kein Umbrechen */
.nav-main {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}

.nav-main > ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main > ul > li { position: relative; }

.nav-main a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-main a:hover,
.nav-main a.active {
  color: var(--color-primary);
  background: rgba(13, 148, 136, 0.08);
}

.nav-main .dropdown {
  position: relative;
}
.nav-main .dropdown > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.2s;
}
.nav-main .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-main .dropdown > ul a {
  padding: 0.6rem 1rem;
  border-radius: 8px;
  display: block;
  color: var(--color-text);
}
.nav-main .dropdown > ul a:hover {
  background: var(--color-surface-alt);
  color: var(--color-primary);
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: #fff !important;
  padding: 0.7rem 1.4rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  margin-left: 0.5rem;
}
.cta-phone:hover {
  background: var(--color-primary-hover);
  color: #fff !important;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-main {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--color-surface);
    padding: 5rem 1.5rem 1.5rem;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.3s;
    align-items: flex-start;
  }
  .nav-main > ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.5rem;
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main a { color: var(--color-text); }
  .nav-main .dropdown > ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0.25rem;
    margin-left: 1rem;
    background: var(--color-surface-alt);
    max-height: 500px;
  }
}

/* ========== Hero – großzügig, mit Akzentstreifen ========== */
.hero {
  padding: 5rem 0 6rem;
  background: linear-gradient(135deg, var(--color-surface-alt) 0%, var(--color-bg) 50%);
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 120px;
  background: var(--color-primary);
  border-radius: 0 4px 4px 0;
}
@media (min-width: 768px) {
  .hero::before { height: 180px; }
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--color-primary); }

.hero .lead {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.35);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: rgba(13, 148, 136, 0.08);
}

.hero-phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ========== Sections ========== */
.section {
  padding: 5.5rem 0;
}
.section-alt {
  background: var(--color-surface);
  box-shadow: 0 1px 0 var(--color-border);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.section-title h2 span { color: var(--color-primary); }
.section-title p {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Service cards – weiße Karten mit Schatten ========== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.25rem;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.2s;
  box-shadow: var(--shadow);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--color-surface-alt);
}

.service-card .card-body {
  padding: 2rem;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}
.service-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.service-card .btn {
  width: 100%;
}

/* Two-column content ========== */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .content-two-col { grid-template-columns: 1fr; }
}

.content-two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.content-two-col h2 { margin-bottom: 1rem; }
.content-two-col p { color: var(--color-text-muted); margin-bottom: 1.25rem; }

/* Stats ========== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.stat-item .number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.25rem;
}
.stat-item .label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* Offers ========== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.offer-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.offer-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.offer-card h3 {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.offer-card .discount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.offer-card .title {
  color: var(--color-text);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* FAQ ========== */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--color-surface);
}
.faq-item[open] { border-color: var(--color-primary); }

.faq-item summary {
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.35rem 1.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: attr(data-num);
  background: var(--color-primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.faq-item[open] summary { margin-bottom: 0; }
.faq-item p {
  color: var(--color-text-muted);
  padding: 0 1.5rem 1.5rem 2.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Reviews ========== */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.review-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}
.review-card .author {
  font-weight: 600;
  color: var(--color-text);
}
.review-card .meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Team ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
}

.team-card {
  text-align: center;
}
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  background: var(--color-surface-alt);
  border: 3px solid var(--color-border);
}
.team-card h4 { font-size: 1.1rem; color: var(--color-text); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.9rem; color: var(--color-primary); font-weight: 600; }

/* ========== Footer – dunkel ========== */
.site-footer {
  background: var(--color-footer-bg);
  color: #e2e8f0;
  padding: 5rem 0 2.5rem;
  margin-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: #fff;
}
.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-brand .phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.footer-col h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col a {
  color: #94a3b8;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  display: block;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }

/* ========== Innenseiten ========== */
.page-hero {
  padding: 3.5rem 0 3rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--color-text);
}
.page-hero h1 span { color: var(--color-primary); }
.page-hero p { color: var(--color-text-muted); margin-top: 0.5rem; }

.page-content {
  padding: 3.5rem 0;
  max-width: 800px;
}
.page-content h2 {
  font-size: 1.45rem;
  color: var(--color-text);
  margin: 2rem 0 0.85rem;
}
.page-content h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--color-text);
}
.page-content p, .page-content li {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.page-content ul {
  margin: 1rem 0 1rem 1.5rem;
}

/* Contact form ========== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) { .form-grid { grid-template-columns: 1fr; } }

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-full { grid-column: 1 / -1; }

/* Legal ========== */
.legal-content {
  max-width: 720px;
  padding: 3rem 0;
}
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--color-text);
  margin: 2rem 0 0.6rem;
}
.legal-content p, .legal-content ul {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Blog cards ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: var(--shadow);
}
.blog-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.blog-card img {
  height: 160px;
  object-fit: cover;
  background: var(--color-surface-alt);
}
.blog-card .card-body { padding: 1.5rem; }
.blog-card h4 {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.blog-card a { font-size: 0.9rem; }
