/* ============================================
   TRAKTORREIFENFINDER.DE - Stylesheet
   Farbschema basierend auf Flyer-Design
   ============================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Primärfarben aus dem Flyer */
  --orange: #E8760A;
  --orange-dark: #D06800;
  --orange-light: #F5A623;
  --brown: #4A3728;
  --brown-light: #5C483A;
  --white: #FFFFFF;
  --off-white: #F7F5F2;
  --gray-light: #EDEDED;
  --gray: #999999;
  --text-dark: #333333;
  --text-medium: #666666;
  --green-check: #E8760A;

  /* Typografie */
  --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Abstände */
  --section-padding: 80px 0;
  --container-width: 1140px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-medium);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 118, 10, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 28px rgba(232, 118, 10, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-brown {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74, 55, 40, 0.35);
}

.btn-brown:hover {
  background: var(--brown-light);
  transform: translateY(-2px);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--orange);
  transition: all 0.3s ease;
  overflow: visible;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(0.85rem, 1.5vw, 1.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  flex-shrink: 1;
  min-width: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  background: var(--white) !important;
  color: var(--orange) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: clamp(0.75rem, 1vw, 0.9rem) !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--off-white) !important;
  transform: scale(1.03);
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-left: 40px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
}

.hero-content h1 span {
  display: block;
}

.hero-erfahrung-vertical {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.hero-erfahrung-vertical span {
  display: block;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-content .hero-subtitle {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 24px;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-phone-box {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  max-width: 380px;
  width: 100%;
}

.hero-phone-box .phone-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
  margin: 0 auto 16px auto;
  display: block;
}

.hero-phone-box .phone-hint {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.hero-wa-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  color: var(--white);
}

/* Nav contact button with avatar + phone icon inside border */
.nav-cta.nav-contact {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 4px 12px 4px 4px !important;
  border: 1.5px solid rgba(0,0,0,0.6) !important;
  border-radius: 50px !important;
  background: transparent !important;
  color: var(--dark) !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.nav-cta.nav-contact:hover {
  border-color: var(--white) !important;
  background: rgba(255,255,255,0.1) !important;
}

.nav-contact-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: none;
  vertical-align: middle;
}

.nav-contact svg {
  flex-shrink: 0;
  vertical-align: middle;
  stroke: rgba(0,0,0,0.7);
}

/* CTA inline contact button (Anrufen with avatar) */
.btn-contact-inline {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.btn-contact-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* CTA contact card */
.cta-contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cta-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.5);
}

.cta-contact-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* Footer contact link with avatar */
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-contact-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

/* --- Section Styles --- */
.section {
  padding: var(--section-padding);
}

.section-gray {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header .section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

/* --- 3-Schritte Prozess --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--orange);
  opacity: 0.2;
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 112px;
  height: 112px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.step-icon svg {
  width: 48px;
  height: 48px;
  color: var(--white);
}

.step-number {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  color: var(--orange);
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-card p {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* Pfeile zwischen Steps */
.step-arrow {
  display: none;
}

/* --- Vorteile / Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: var(--orange);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 118, 10, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.benefit-card h4 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
}

/* --- CTA-Sektion (braun, wie im Flyer) --- */
.cta-section {
  background: var(--brown);
  padding: 64px 0;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta-content .cta-phone {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.cta-content .cta-website {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Über Uns --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  background: var(--gray-light);
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
}

.about-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.3);
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.stat {
  text-align: center;
  padding: 16px;
  background: rgba(232, 118, 10, 0.06);
  border-radius: var(--border-radius-sm);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-medium);
  margin-top: 4px;
}

/* --- Leistungen --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-top-color: var(--orange);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(232, 118, 10, 0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.95rem;
}

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

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--orange);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232, 118, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  background: var(--orange);
}

.faq-item.active .faq-toggle svg {
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-medium);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* --- Kontaktformular --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--border-radius);
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.contact-detail-text strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.contact-detail-text span {
  opacity: 0.85;
  font-size: 1rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Footer --- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--orange);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero-erfahrung-vertical {
    display: none;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-phone-box {
    max-width: 340px;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--orange);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

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

  .steps-grid::before {
    display: none;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Mobile nav contact button */
  .nav-cta.nav-contact {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 4px 12px 4px 4px !important;
    border: 1.5px solid rgba(0,0,0,0.6) !important;
    border-radius: 50px !important;
    background: transparent !important;
    max-width: none;
    font-size: 0 !important;
  }

  .nav-contact-img {
    width: 30px !important;
    height: 30px !important;
  }

  /* Mobile hero box */
  .hero-phone-box {
    padding: 28px 20px;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-phone-box .phone-label {
    font-size: 1rem;
  }

  .hero-avatar {
    width: 50px;
    height: 50px;
  }

  .hero-wa-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  /* Mobile CTA contact card */
  .cta-contact-card {
    flex-direction: column;
    gap: 10px;
  }
}

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

  .about-stats {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* --- Animationen --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
