/* Home Page Specific Styles - Hero, Services, Welcome, Expect, FAQ, Contact */

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.05), rgba(43, 108, 246, 0.05));
  padding: 6rem 6vw;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 0 2rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), #ff8c42, var(--primary));
  background-size: 200% 200%;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(255, 122, 24, 0.4), 0 0 15px rgba(255, 122, 24, 0.3);
  animation: gradient-shift-badge 3s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradient-shift-badge {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  hyphens: none;
  word-break: keep-all;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 600px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn-wide {
  min-width: 450px;
  width: auto;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.hero-certificates {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.hero-certificate {
  width: 100%;
  max-width: 480px;
}

.certificate-document {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
  transition: all 0.4s ease;
  width: 100%;
}

.certificate-svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.12));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.certificate-document:hover .certificate-svg {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 12px 35px rgba(30, 58, 138, 0.2));
}

.certificate-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
  z-index: 1;
}

.certificate-seal {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border: 3px solid #b8941f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 4px 15px rgba(212, 175, 55, 0.4),
    inset 0 2px 5px rgba(255, 255, 255, 0.3),
    inset 0 -2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}

.certificate-seal::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.certificate-seal svg {
  color: #8b6914;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.certificate-title-section {
  flex: 1;
}

.certificate-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #8b6914;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  font-family: 'Times New Roman', serif;
}

.certificate-main-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  font-family: 'Times New Roman', serif;
  letter-spacing: 0.5px;
}

.certificate-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  font-style: italic;
}

.certificate-body {
  position: relative;
  z-index: 1;
}

.certificate-text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
  font-style: italic;
  padding: 0 1rem;
}

.certificate-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.certificate-year {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.certificate-stamp {
  font-size: 0.75rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.25rem 0.75rem;
  border: 2px solid #d4af37;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.1);
}

.hero-rating {
  color: var(--text);
  font-size: 0.95rem;
}

.hero-rating strong {
  color: var(--text-dark);
}

.hero-rating .stars {
  color: var(--primary);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero-image-wrapper {
  position: relative;
  margin-top: -40px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-house-icon {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  color: var(--primary);
  opacity: 0.3;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero-stat-box {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.hero-stat-box svg {
  color: var(--text-dark);
  flex-shrink: 0;
}

.hero-stat-box strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-box span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* Welcome Section */
.welcome-section {
  text-align: center;
  padding: 5rem 6vw;
  max-width: 1600px;
  margin: 0 auto;
}

.welcome-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
}

.welcome-section .underline {
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 24, 0.3);
  text-underline-offset: 8px;
}

.welcome-section p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
}

.welcome-section strong {
  color: var(--text-dark);
  font-weight: 600;
}

.welcome-video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: #000;
  transition: all 0.3s ease;
}

.welcome-video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.welcome-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 20px;
}

.welcome-video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* Services Section */
.services-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 6rem 6vw;
  max-width: 1600px;
  margin: 0 auto;
}

.service-card {
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  color: var(--text-dark);
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.service-card-1 {
  background: linear-gradient(135deg, #ff7a18, #ff8c42, #ff7a18);
  background-size: 200% 200%;
  animation: gradient-shift-card1 4s ease infinite;
}

@keyframes gradient-shift-card1 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.service-card-2 {
  background: linear-gradient(135deg, #ff6b6b, #ff8080, #ff6b6b);
  background-size: 200% 200%;
  animation: gradient-shift-card2 4s ease infinite;
}

@keyframes gradient-shift-card2 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.service-card-3 {
  background: linear-gradient(135deg, #4ecdc4, #5eddd4, #4ecdc4);
  background-size: 200% 200%;
  animation: gradient-shift-card3 4s ease infinite;
}

@keyframes gradient-shift-card3 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.service-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-dark);
  opacity: 0.95;
  font-weight: 500;
}

.service-card ul {
  list-style: none;
  margin-bottom: auto;
  flex-grow: 1;
}

.service-card li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 500;
}

.service-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

/* Komplettservice Badges */
.komplettservice-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.komplettservice-list > li {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.komplettservice-list > li::before {
  display: none;
}

.komplettservice-list > li > span {
  font-weight: 600;
  color: var(--text-dark);
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.service-badge {
  background: #fff;
  color: var(--text-dark);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-badge-notar {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--text-dark);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
}

.service-badge-notar svg {
  width: 16px;
  height: 16px;
  color: var(--text-dark);
}

.service-link {
  color: var(--text-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 1rem;
}

.service-btn {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
  background: var(--text-dark);
  color: #fff;
  border: 2px solid var(--text-dark);
}

.service-btn:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Process Section */
.process-section {
  padding: 4rem 6vw;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 1));
  max-width: 1600px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.process-header p {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
  position: relative;
  padding: 0 2rem;
}

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 122, 24, 0.4);
  z-index: 2;
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 1rem auto 1rem;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.1), rgba(30, 64, 175, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.4s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.2), rgba(30, 64, 175, 0.2));
  box-shadow: 0 10px 30px rgba(255, 122, 24, 0.3);
}

.process-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.95rem;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.3;
  margin: 0 -1rem;
  z-index: 1;
  flex-shrink: 0;
}

.process-cta {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Expect Section */
.expect-section {
  background: #e0f2fe;
  padding: 5rem 6vw;
  max-width: 1600px;
  margin: 0 auto;
}

.expect-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expect-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.expect-badge svg {
  width: 16px;
  height: 16px;
}

.expect-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.expect-content p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.expect-list {
  list-style: none;
  margin-bottom: 2rem;
}

.expect-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text);
  font-size: 1.05rem;
}

.expect-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.2rem;
}

.expect-divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.expect-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.expect-images {
  position: relative;
  height: 500px;
}

.expect-yellow-shape {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.15) 0%, rgba(255, 122, 24, 0.05) 50%, transparent 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
  opacity: 0.8;
  transform: scale(1.1);
}

.expect-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  z-index: 2;
}

.expect-img-2 {
  position: absolute;
  bottom: 0;
  right: 50px;
  width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  z-index: 2;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 6vw;
  max-width: 1600px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 3rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.faq-badge svg {
  width: 16px;
  height: 16px;
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
}

.faq-question svg {
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 2.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

.faq-answer p {
  color: var(--text);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 5rem 6vw;
  max-width: 1600px;
  margin: 0 auto;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.contact-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.contact-info-box {
  background: #fff;
  border: 2px solid #bfdbfe;
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-info-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-info-box p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text);
}

.contact-details svg {
  color: var(--text-dark);
  flex-shrink: 0;
}

.contact-map {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-map h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-map p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.map-locations {
  list-style: none;
  margin-bottom: 2rem;
}

.map-locations li {
  padding: 0.5rem 0;
  color: var(--text);
}

.map-placeholder {
  background: #e2e8f0;
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  color: var(--text-light);
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.trust-badge svg {
  color: var(--primary);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.trust-badge div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-badge strong {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.trust-badge span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Professional Section */
.professional-section {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 122, 24, 0.05));
  padding: 5rem 6vw;
  margin-top: 4rem;
  border-radius: 24px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.professional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 1200px) {
  .professional-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.professional-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.professional-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.professional-item:hover::before {
  transform: scaleX(1);
}

.professional-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.professional-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.professional-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.professional-item p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mobile Home Styles */
@media (max-width: 968px) {
  /* Konsistente Padding-Werte für alle Sections */
  .section,
  .welcome-section,
  .services-section,
  .process-section,
  .expect-section,
  .faq-section,
  .contact-section,
  .testimonials-section,
  .guarantees-section,
  .professional-section,
  .live-stats-section,
  .calculator-section,
  .urgency-section,
  .trust-badges-section,
  .quick-evaluation-section,
  .reasons-section,
  .locations-section,
  .interest-rates-section,
  .comparison-section {
    padding: 3rem 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Alle Container auf Mobile auf volle Breite */
  .hero-container,
  .testimonials-container,
  .services-container,
  .process-container,
  .expect-container,
  .faq-container,
  .contact-container,
  .guarantees-container,
  .professional-container,
  .live-stats-container,
  .calculator-container,
  .urgency-container,
  .trust-badges-container,
  .quick-evaluation-container,
  .reasons-container,
  .locations-container,
  .interest-rates-container,
  .comparison-container,
  .welcome-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
  
  .hero {
    padding: 1.5rem 1rem;
    min-height: auto;
    overflow: hidden;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .hero-content {
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  
  .hero-badge {
    margin: 0 auto 0.75rem;
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
    display: inline-flex;
  }
  
  .hero h1 {
    text-align: center;
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 0.875rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .hero-description {
    text-align: center;
    margin: 0 auto 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 100%;
    word-wrap: break-word;
  }
  
  .hero-image-wrapper {
    order: -1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1rem;
    margin-top: 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
  }
  
  .hero-image {
    height: 200px;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  
  .hero-image-wrapper {
    border-radius: 20px;
  }
  
  .hero-house-icon {
    display: none;
  }
  
  .hero-stat-box {
    bottom: 10px;
    right: 10px;
    padding: 0.6rem 0.9rem;
    flex-direction: row;
    gap: 0.6rem;
    font-size: 0.85rem;
    max-width: calc(100% - 20px);
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .hero-stat-box svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  
  .hero-stat-box strong {
    font-size: 1rem;
    word-break: break-word;
  }
  
  .hero-stat-box span {
    font-size: 0.7rem;
    display: block;
    word-break: break-word;
    line-height: 1.2;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 0.75rem;
    margin-top: 1.5rem;
    box-sizing: border-box;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  .hero-actions .btn-wide {
    min-width: auto;
    width: 100%;
  }
  
  .hero-customer-quote {
    margin-top: 1.5rem;
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .customer-quote-label,
  .customer-quote-text,
  .customer-quote-author {
    font-size: 0.9rem;
    line-height: 1.5;
    word-wrap: break-word;
  }
  
  .hero-certificates {
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-top: 1.5rem;
    box-sizing: border-box;
  }
  
  .hero-certificate {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .certificate-document {
    padding: 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .certificate-document svg {
    max-width: 100%;
    height: auto;
  }
  
  .certificate-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  
  .certificate-seal {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .certificate-main-title {
    font-size: 1.25rem;
  }
  
  .certificate-subtitle {
    font-size: 0.85rem;
  }
  
  .certificate-text {
    font-size: 0.85rem;
    padding: 0;
    margin-bottom: 1rem;
  }
  
  .certificate-footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .hero-rating {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
  }
  
  .welcome-section {
    text-align: center;
  }
  
  .welcome-section h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .welcome-section p {
    font-size: 1rem;
  }
  
  .welcome-video-container {
    margin-top: 2rem;
    max-width: 100%;
    border-radius: 12px;
    width: 100%;
  }
  
  .welcome-video-wrapper {
    border-radius: 12px;
  }
  
  .welcome-video-embed {
    border-radius: 12px;
  }
  
  .services-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    top: 1rem;
    right: 1rem;
  }
  
  .service-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .process-section {
    padding: 3rem 1.5rem;
  }
  
  .process-header {
    margin-bottom: 2rem;
  }
  
  .process-header h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }
  
  .process-header p {
    font-size: 1rem;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .process-step {
    max-width: 100%;
    width: 100%;
    min-width: auto;
  }
  
  .process-connector {
    transform: rotate(90deg);
    margin: -0.5rem 0;
  }
  
  .process-cta {
    padding: 1.5rem;
  }
  
  .expect-section {
    padding: 3rem 1.5rem;
  }
  
  .expect-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .expect-content {
    text-align: center;
  }
  
  .expect-badge {
    margin: 0 auto 1.5rem;
  }
  
  .expect-content h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .expect-content p {
    font-size: 1rem;
    text-align: left;
  }
  
  .expect-list {
    text-align: left;
  }
  
  .expect-images {
    height: 300px;
    margin-top: 2rem;
  }
  
  .expect-yellow-shape {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
  }
  
  .expect-img-1 {
    width: 180px;
    height: 240px;
    top: 0;
    left: 0;
  }
  
  .expect-img-2 {
    width: 180px;
    height: 240px;
    bottom: 0;
    right: 20px;
  }
  
  .expect-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .expect-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .faq-section {
    padding: 3rem 1.5rem;
  }
  
  .faq-header h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    text-align: center;
  }
  
  .faq-badge {
    margin: 0 auto 1.5rem;
    display: block;
    width: fit-content;
  }
  
  .faq-question {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  
  .faq-answer {
    padding-left: 2rem;
  }
  
  .contact-section {
    padding: 3rem 1.5rem;
  }
  
  .contact-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .contact-image img {
    height: 250px;
  }
  
  .contact-info-box {
    padding: 1.5rem;
  }
  
  .contact-info-box h2 {
    font-size: 1.5rem;
  }
  
  .contact-details li {
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }
  
  .contact-map {
    padding: 1.5rem;
  }
  
  .contact-map h3 {
    font-size: 1.3rem;
  }
  
  .map-placeholder {
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  
  .trust-badges {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-badge {
    padding: 1rem;
  }
  
  .professional-section {
    padding: 3rem 1.5rem;
    margin-top: 2rem;
  }
  
  .professional-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .professional-number {
    font-size: 2.5rem;
  }
  
  .professional-item {
    padding: 1.5rem;
  }
  
  @media (max-width: 640px) {
    .professional-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
    
    .professional-item {
      padding: 1.25rem;
      min-height: auto;
    }
    
    .professional-number {
      font-size: 2rem;
    }
    
    .professional-item h3 {
      font-size: 1.15rem;
    }
    
    .professional-item p {
      font-size: 0.9rem;
    }
  }
}

/* Additional Mobile Optimizations for Small Screens */
@media (max-width: 480px) {
  /* Konsistente Padding-Werte für alle Sections auf sehr kleinen Bildschirmen */
  .section,
  .welcome-section,
  .services-section,
  .process-section,
  .expect-section,
  .faq-section,
  .contact-section,
  .testimonials-section,
  .guarantees-section,
  .professional-section,
  .live-stats-section,
  .calculator-section,
  .urgency-section,
  .trust-badges-section,
  .quick-evaluation-section,
  .reasons-section,
  .locations-section,
  .interest-rates-section,
  .comparison-section {
    padding: 2rem 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  
  /* Alle Container auf sehr kleinen Bildschirmen */
  .hero-container,
  .testimonials-container,
  .services-container,
  .process-container,
  .expect-container,
  .faq-container,
  .contact-container,
  .guarantees-container,
  .professional-container,
  .live-stats-container,
  .calculator-container,
  .urgency-container,
  .trust-badges-container,
  .quick-evaluation-container,
  .reasons-container,
  .locations-container,
  .interest-rates-container,
  .comparison-container,
  .welcome-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }
  
  /* Alle Cards und Boxes auf volle Breite */
  .service-card,
  .testimonial-card,
  .guarantee-card,
  .process-step,
  .expect-item,
  .faq-item,
  .professional-item,
  .live-stat-card,
  .calculator-box,
  .urgency-card,
  .trust-badge,
  .quick-step,
  .reason-category,
  .location-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .hero {
    padding: 1.25rem 0.75rem;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .hero-container {
    gap: 1.25rem;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .hero-content {
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.625rem;
  }
  
  .hero h1 {
    font-size: clamp(1.375rem, 6vw, 1.75rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .hero-image-wrapper {
    margin-bottom: 0.875rem;
  }
  
  .hero-image {
    height: 180px;
    border-radius: 18px;
  }
  
  .hero-image-wrapper {
    border-radius: 18px;
  }
  
  .hero-stat-box {
    padding: 0.5rem 0.7rem;
    bottom: 8px;
    right: 8px;
    font-size: 0.75rem;
    max-width: calc(100% - 16px);
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .hero-stat-box svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  .hero-stat-box strong {
    font-size: 0.9rem;
    word-break: break-word;
  }
  
  .hero-stat-box span {
    font-size: 0.65rem;
    word-break: break-word;
    line-height: 1.2;
  }
  
  .hero-certificates {
    margin-top: 1.25rem;
  }
  
  .certificate-document {
    padding: 0.875rem;
  }
  
  .hero-rating {
    font-size: 0.85rem;
    margin-top: 0.875rem;
  }
  
  .hero-customer-quote {
    margin-top: 1rem;
  }
  
  .customer-quote-text {
    font-size: 0.875rem;
  }
  
  .hero-stat-box {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  
  .hero-stat-box strong {
    font-size: 0.9rem;
  }
  
  .certificate-document {
    padding: 1rem;
  }
  
  .certificate-seal {
    width: 50px;
    height: 50px;
  }
  
  .certificate-main-title {
    font-size: 1.1rem;
  }
  
  .welcome-video-wrapper {
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.03), rgba(43, 108, 246, 0.03));
  padding: 6rem 6vw;
}

.testimonials-container {
  max-width: 1600px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonials-badge:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 122, 24, 0.3);
}

.testimonials-badge svg {
  width: 16px;
  height: 16px;
}

.testimonials-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.testimonials-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  padding: 0;
  overflow: hidden;
}

.testimonial-image-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-family-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-featured:hover .testimonial-family-image {
  transform: scale(1.1);
}

.testimonial-success-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 20px rgba(255, 122, 24, 0.4);
}

.testimonial-success-badge svg {
  width: 20px;
  height: 20px;
}

.testimonial-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-highlight {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  border: 2px solid #22c55e;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.testimonial-highlight-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-highlight-text {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

.testimonial-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.testimonial-feature svg {
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(30, 64, 175, 0.05));
  border-radius: 8px;
  border-left: 4px solid var(--primary-blue);
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-trust svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 122, 24, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: #FFD700;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 1rem;
  }
  
  .testimonials-header {
    margin-bottom: 2.5rem;
  }
  
  .testimonials-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
  }
  
  .testimonials-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-featured {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .testimonial-image-wrapper {
    height: 300px;
  }
  
  .testimonial-content {
    padding: 1.5rem;
  }
  
  .testimonial-highlight-amount {
    font-size: 2rem;
  }
  
  .testimonial-features {
    gap: 0.5rem;
  }
  
  .testimonial-feature {
    padding: 0.5rem;
    font-size: 0.9rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .testimonial-author {
    margin-top: 1rem;
  }
  
  .testimonial-author strong {
    font-size: 0.95rem;
  }
  
  .testimonial-author span {
    font-size: 0.85rem;
  }
}

/* Vergleichstabelle Section */
.comparison-section {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.03), rgba(43, 108, 246, 0.03));
  padding: 6rem 6vw;
}

.comparison-container {
  max-width: 1600px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 4rem;
}

.comparison-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.comparison-badge:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 122, 24, 0.3);
}

.comparison-badge svg {
  width: 16px;
  height: 16px;
}

.comparison-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.comparison-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.comparison-table-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  margin-bottom: 3rem;
}

.comparison-table {
  width: 100%;
  min-width: 800px;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--border);
}

.comparison-criterion-header {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.comparison-option {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  position: relative;
}

.comparison-option-us {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.1), rgba(255, 122, 24, 0.05));
  border: 2px solid var(--primary);
}

.comparison-option-them {
  background: linear-gradient(135deg, rgba(100, 116, 139, 0.1), rgba(100, 116, 139, 0.05));
  border: 2px solid var(--border);
}

.comparison-option-badge {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.comparison-option-us .comparison-option-badge {
  background: var(--primary);
  color: #fff;
}

.comparison-option-them .comparison-option-badge {
  background: var(--text-light);
  color: #fff;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.comparison-row:hover {
  background: rgba(255, 122, 24, 0.02);
  border-radius: 8px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-criterion {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.comparison-criterion svg {
  color: var(--primary);
  flex-shrink: 0;
}

.comparison-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  text-align: center;
  min-height: 60px;
}

.comparison-value-us {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.08), rgba(255, 122, 24, 0.03));
  color: var(--text-dark);
  font-weight: 500;
}

.comparison-value-us svg {
  color: #22c55e;
  flex-shrink: 0;
}

.comparison-value-them {
  background: rgba(100, 116, 139, 0.05);
  color: var(--text);
  font-weight: 400;
}

.comparison-value-them svg {
  color: #ef4444;
  flex-shrink: 0;
}

.comparison-value span {
  flex: 1;
  line-height: 1.5;
}

.comparison-cta {
  text-align: center;
  padding: 2rem;
}

@media (max-width: 968px) {
  .comparison-section {
    padding: 3rem 1rem;
  }
  
  .comparison-header {
    margin-bottom: 2.5rem;
  }
  
  .comparison-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
  }
  
  .comparison-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  
  .comparison-header p {
    font-size: 1rem;
  }
  
  .comparison-table-wrapper {
    padding: 1rem;
    border-radius: 12px;
  }
  
  .comparison-table {
    min-width: 700px;
  }
  
  .comparison-header-row {
    gap: 0.75rem;
    padding-bottom: 1rem;
  }
  
  .comparison-criterion-header {
    font-size: 0.95rem;
  }
  
  .comparison-option {
    padding: 0.75rem 0.5rem;
  }
  
  .comparison-option-badge {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
  }
  
  .comparison-row {
    gap: 0.75rem;
    padding: 1rem 0;
  }
  
  .comparison-criterion {
    font-size: 0.9rem;
    gap: 0.5rem;
  }
  
  .comparison-criterion svg {
    width: 18px;
    height: 18px;
  }
  
  .comparison-value {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    min-height: 50px;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .comparison-value svg {
    width: 20px;
    height: 20px;
  }
  
  .comparison-cta {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .comparison-table-wrapper {
    padding: 1rem 0.75rem;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
  }
  
  .comparison-table {
    min-width: auto;
    width: 100%;
    display: block;
  }
  
  .comparison-header-row {
    display: none;
  }
  
  .comparison-row {
    display: block;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1.25rem 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 1.5rem;
  }
  
  .comparison-row:last-child {
    border-bottom: 2px solid var(--border);
    margin-bottom: 0;
  }
  
  .comparison-criterion {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .comparison-criterion svg {
    width: 20px;
    height: 20px;
  }
  
  .comparison-value {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    min-height: auto;
    text-align: left;
    border-radius: 8px;
    position: relative;
  }
  
  .comparison-value::before {
    content: attr(data-label);
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    background: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .comparison-value-us::before {
    content: 'WirKaufenIhreImmobilie';
    color: var(--primary);
  }
  
  .comparison-value-them::before {
    content: 'Herkömmlicher Makler';
    color: var(--text);
  }
  
  .comparison-value:last-child {
    margin-bottom: 0;
  }
  
  .comparison-value svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .comparison-value span {
    flex: 1;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
  
  .comparison-option-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .comparison-table-wrapper {
    padding: 0.75rem 0.5rem;
  }
  
  .comparison-row {
    padding: 1rem 0;
    margin-bottom: 1.25rem;
  }
  
  .comparison-criterion {
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
    padding-bottom: 0.625rem;
  }
  
  .comparison-criterion svg {
    width: 18px;
    height: 18px;
  }
  
  .comparison-value {
    padding: 0.875rem;
    font-size: 0.85rem;
    gap: 0.625rem;
  }
  
  .comparison-value svg {
    width: 20px;
    height: 20px;
  }
  
  .comparison-option-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.625rem;
  }
}

/* Garantien Section */
.guarantees-section {
  background: linear-gradient(135deg, rgba(43, 108, 246, 0.05), rgba(255, 122, 24, 0.05));
  padding: 4rem 6vw;
}

.guarantees-container {
  max-width: 1400px;
  margin: 0 auto;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.guarantee-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 24, 0.1), transparent);
  transition: left 0.6s ease;
}

.guarantee-card:hover::before {
  left: 100%;
}

.guarantee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 3px 15px rgba(255, 122, 24, 0.3);
  transition: all 0.3s ease;
}

.guarantee-icon svg {
  width: 28px;
  height: 28px;
}

.guarantee-card:hover .guarantee-icon {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 122, 24, 0.4);
}

.guarantee-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.guarantee-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .guarantees-section {
    padding: 3rem 1rem;
  }
  
  .guarantees-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .guarantee-card {
    padding: 1.5rem;
  }
  
  .guarantee-icon {
    width: 50px;
    height: 50px;
  }
  
  .guarantee-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .guarantee-card h3 {
    font-size: 1.05rem;
  }
  
  .guarantee-card p {
    font-size: 0.85rem;
  }
  
  .guarantees-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .guarantee-card {
    padding: 1.5rem;
  }
  
  .guarantee-icon {
    width: 50px;
    height: 50px;
  }
  
  .guarantee-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .guarantee-card h3 {
    font-size: 1.05rem;
  }
  
  .guarantee-card p {
    font-size: 0.85rem;
  }
}

/* Live-Statistiken Section */
.live-stats-section {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 122, 24, 0.05));
  padding: 5rem 6vw;
}

.live-stats-container {
  max-width: 1600px;
  margin: 0 auto;
}

.live-stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.live-stats-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.live-stats-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.live-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.live-stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.live-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.live-stat-card:hover::before {
  transform: scaleX(1);
}

.live-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.live-stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 5px 20px rgba(255, 122, 24, 0.3);
}

.live-stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.live-stat-label {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 500;
}

.live-stat-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 20px;
  color: #22c55e;
  font-weight: 600;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.pulse-animation {
  animation: pulse-card 3s ease-in-out infinite;
}

@keyframes pulse-card {
  0%, 100% {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  }
  50% {
    box-shadow: 0 5px 30px rgba(255, 122, 24, 0.2);
  }
}

/* Sparrechner Section */
.calculator-section {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.03), rgba(43, 108, 246, 0.03));
  padding: 6rem 6vw;
}

.calculator-container {
  max-width: 1200px;
  margin: 0 auto;
}

.calculator-header {
  text-align: center;
  margin-bottom: 3rem;
}

.calculator-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.calculator-badge:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 122, 24, 0.3);
}

.calculator-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.calculator-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.calculator-box {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.calculator-inputs {
  margin-bottom: 2rem;
}

.calculator-input-group {
  margin-bottom: 2rem;
}

.calculator-input-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.calculator-input-group input[type="number"],
.calculator-input-group input[type="text"] {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  transition: all 0.3s ease;
  background: #fff;
}

.calculator-input-group input[type="number"]:focus,
.calculator-input-group input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.1);
}

.calculator-slider {
  margin-top: 1rem;
}

.calculator-slider input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
}

.calculator-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255, 122, 24, 0.3);
  transition: all 0.3s ease;
}

.calculator-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--primary-blue);
}

.calculator-slider input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 122, 24, 0.3);
}

.calculator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.calculator-result-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.calculator-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.result-makler {
  border-color: #ef4444;
}

.result-us {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.05), rgba(255, 122, 24, 0.02));
}

.result-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.result-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.result-makler .result-amount {
  color: #ef4444;
}

.result-us .result-amount {
  color: var(--primary);
}

.result-details {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cost-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text);
  gap: 0.5rem;
}

.cost-item span:first-child {
  flex: 1;
  text-align: left;
}

.cost-item span:last-child {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.calculator-savings {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 122, 24, 0.3);
}

.savings-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.savings-amount {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.savings-percentage {
  font-size: 1.5rem;
  opacity: 0.9;
  font-weight: 600;
}

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

/* Warum jetzt? Section */
.urgency-section {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.05), rgba(30, 64, 175, 0.05));
  padding: 6rem 6vw;
}

.urgency-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ef4444;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.urgency-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.urgency-content p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.urgency-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.urgency-reason {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.urgency-reason:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
}

.urgency-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.urgency-reason h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.urgency-reason p {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
}

.urgency-visual {
  position: relative;
  height: 400px;
}

.urgency-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.urgency-card:first-child {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  color: #fff;
}

.urgency-card:last-child {
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

.urgency-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.urgency-card-text {
  text-align: center;
}

.urgency-card-text strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.urgency-card-text span {
  font-size: 1rem;
  opacity: 0.9;
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.floating-delayed {
  animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.urgency-cta {
  margin-top: 2rem;
}

/* Bauzinsen Widget Section */
.interest-rates-section {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(255, 122, 24, 0.03));
  padding: 6rem 6vw;
}

.interest-rates-container {
  max-width: 1200px;
  margin: 0 auto;
}

.interest-rates-header-simple {
  text-align: center;
  margin-bottom: 3rem;
}

.interest-rates-badge-simple {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.interest-rates-header-simple h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.interest-rates-simple {
  background: #fff;
  border-radius: 24px;
  padding: 4rem 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(30, 64, 175, 0.1);
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.interest-rates-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.2;
  opacity: 0.8;
}

.interest-rates-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.interest-rates-loading p {
  color: var(--text);
  font-size: 1.1rem;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(30, 64, 175, 0.1);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.interest-rates-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.interest-rate-number {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.interest-rate-percent {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
}

.interest-rates-footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 64, 175, 0.1);
}

.interest-rates-disclaimer {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
  line-height: 1.6;
  margin: 0;
}

.interest-rates-disclaimer a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.interest-rates-disclaimer a:hover {
  text-decoration: underline;
}

.interest-rates-update-text {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .interest-rates-section {
    padding: 4rem 4vw;
  }

  .interest-rates-header-simple {
    margin-bottom: 2rem;
  }

  .interest-rates-badge-simple {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
  }

  .interest-rates-header-simple h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .interest-rates-simple {
    padding: 3rem 2rem;
    min-height: 250px;
  }

  .interest-rates-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .interest-rate-number {
    font-size: 3rem;
  }

  .interest-rate-percent {
    font-size: 2rem;
  }

  .interest-rates-footer-simple {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .interest-rates-disclaimer {
    font-size: 0.8rem;
  }

  .interest-rates-update-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .interest-rates-section {
    padding: 3rem 2rem;
  }

  .interest-rates-simple {
    padding: 2rem 1.5rem;
    min-height: 200px;
  }

  .interest-rates-title {
    font-size: 1.5rem;
  }

  .interest-rate-number {
    font-size: 2.5rem;
  }

  .interest-rate-percent {
    font-size: 1.5rem;
  }
}

/* Über uns Seite - About Page Styles */
.about-hero-section {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 122, 24, 0.05));
  padding: 6rem 6vw;
}

.about-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-hero-description {
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
  hyphens: none;
  word-break: keep-all;
}

.about-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1rem;
}

/* Verkaufsgründe Section */
.reasons-section {
  padding: 6rem 6vw;
  background: #fff;
}

.reasons-container {
  max-width: 1400px;
  margin: 0 auto;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.reason-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
  border-color: var(--primary-blue);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-card-full {
  grid-column: 1 / -1;
}

.reason-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(255, 122, 24, 0.1));
  border-radius: 16px;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.reason-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reason-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

.reason-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.reasons-cta {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 122, 24, 0.05));
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  border: 2px solid rgba(30, 64, 175, 0.1);
}

.reasons-cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.reasons-cta-content p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Über uns - Hauptinhalt */
.about-main-section {
  padding: 6rem 6vw;
  background: #fff;
}

.about-main-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-intro {
  margin-bottom: 5rem;
}

.about-intro-content {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-intro-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-intro-content p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-stat-card {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 122, 24, 0.05));
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
  border-color: var(--primary-blue);
}

.about-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

/* Unsere Werte */
.about-values {
  margin-bottom: 5rem;
}

.about-values h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 2px solid rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
  border-color: var(--primary-blue);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(255, 122, 24, 0.1));
  border-radius: 16px;
  color: var(--primary-blue);
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text);
  line-height: 1.7;
}

/* Unsere Expertise */
.about-expertise {
  margin-bottom: 5rem;
}

.about-expertise h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
}

.expertise-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.expertise-text p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.expertise-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  line-height: 1.7;
}

.expertise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.expertise-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.expertise-badge {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(255, 122, 24, 0.1));
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  border: 2px solid var(--primary-blue);
}

.expertise-badge svg {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.expertise-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.expertise-badge-text strong {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.expertise-badge-text span {
  font-size: 1rem;
  color: var(--text);
}

/* Warum wir */
.about-why {
  margin-bottom: 5rem;
}

.about-why h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-why-subtitle {
  font-size: 1.2rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-item {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
  border-color: var(--primary-blue);
}

.why-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.why-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.why-item p {
  color: var(--text);
  line-height: 1.7;
}

/* Zertifikate Section */
.certificates-section {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(255, 122, 24, 0.03));
  padding: 6rem 6vw;
}

.certificates-container {
  max-width: 1200px;
  margin: 0 auto;
}

.certificates-header {
  text-align: center;
  margin-bottom: 3rem;
}

.certificates-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.certificates-header p {
  font-size: 1.1rem;
  color: var(--text);
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.certificate-item {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(30, 64, 175, 0.1);
  transition: all 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
  border-color: var(--primary-blue);
}

.certificate-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(255, 122, 24, 0.1));
  border-radius: 50%;
  color: var(--primary-blue);
}

.certificate-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.certificate-item p {
  color: var(--text);
  margin-bottom: 1rem;
}

.certificate-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Standorte Section */
.about-locations-section {
  padding: 6rem 6vw;
  background: #fff;
}

.about-locations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-locations-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-locations-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-locations-header p {
  font-size: 1.1rem;
  color: var(--text);
}

.about-locations-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.about-location-info h3,
.about-location-coverage h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-location-info p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-location-info a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.about-location-info a:hover {
  text-decoration: underline;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 122, 24, 0.05));
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 4rem 4vw;
  }

  .about-hero-content h1 {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }

  .about-hero-description {
    font-size: 1.1rem;
  }

  .about-main-section {
    padding: 4rem 4vw;
  }

  .about-intro-content {
    margin-bottom: 2rem;
  }

  .about-intro-content h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }

  .about-intro-content p {
    font-size: 1rem;
  }

  .reasons-section {
    padding: 4rem 4vw;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reason-card {
    padding: 2rem 1.5rem;
  }

  .reason-card-full {
    grid-column: 1;
  }

  .reason-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .reason-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .reason-list li {
    font-size: 0.95rem;
    padding-left: 1.25rem;
  }

  .reasons-cta {
    padding: 3rem 2rem;
  }

  .reasons-cta-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .reasons-cta-content p {
    font-size: 1rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .about-stat-card {
    padding: 1.5rem;
  }

  .about-stat-number {
    font-size: 2.5rem;
  }

  .about-stat-label {
    font-size: 0.9rem;
  }

  .about-values {
    margin-bottom: 3rem;
  }

  .about-values h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
    margin-bottom: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .value-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
  }

  .value-card h3 {
    font-size: 1.25rem;
  }

  .about-expertise {
    margin-bottom: 3rem;
  }

  .about-expertise h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
    margin-bottom: 2rem;
  }

  .expertise-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .expertise-text p {
    font-size: 1rem;
  }

  .expertise-list li {
    font-size: 0.95rem;
  }

  .expertise-badge {
    padding: 2rem;
  }

  .expertise-badge svg {
    width: 60px;
    height: 60px;
  }

  .about-why {
    margin-bottom: 3rem;
  }

  .about-why h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
    margin-bottom: 1rem;
  }
  
  .about-why-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-item {
    padding: 1.5rem;
  }

  .why-number {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    top: -12px;
    left: 1.5rem;
  }

  .why-item h3 {
    font-size: 1.25rem;
    margin-top: 0.75rem;
  }

  .certificates-section {
    padding: 4rem 4vw;
  }

  .certificates-header h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }

  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .certificate-item {
    padding: 2rem 1.5rem;
  }

  .certificate-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  .certificate-item h3 {
    font-size: 1.25rem;
  }

  .about-locations-section {
    padding: 4rem 4vw;
  }

  .about-locations-header h2 {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }

  .about-locations-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-location-info h3,
  .about-location-coverage h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .location-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .location-list li {
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    padding: 3rem 2rem;
  }

  .about-main-section {
    padding: 3rem 2rem;
  }

  .reasons-section {
    padding: 3rem 2rem;
  }

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

  .about-stat-number {
    font-size: 2rem;
  }

  .reasons-cta {
    padding: 2rem 1.5rem;
  }

  .certificates-section {
    padding: 3rem 2rem;
  }

  .about-locations-section {
    padding: 3rem 2rem;
  }
}

/* Trust Badges Section */
.trust-badges-section {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(255, 122, 24, 0.03));
  padding: 6rem 6vw;
}

.trust-badges-container {
  max-width: 1600px;
  margin: 0 auto;
}

.trust-badges-header {
  text-align: center;
  margin-bottom: 4rem;
}

.trust-badges-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.trust-badges-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-badge-item {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.trust-badge-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.trust-badge-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 5px 20px rgba(255, 122, 24, 0.3);
  transition: all 0.3s ease;
}

.trust-badge-item:hover .trust-badge-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 122, 24, 0.4);
}

.trust-badge-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.trust-badge-item p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* PDF Downloads Section */
.pdf-downloads-section {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(255, 122, 24, 0.03));
  padding: 6rem 6vw;
}

.pdf-downloads-container {
  max-width: 1600px;
  margin: 0 auto;
}

.pdf-downloads-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pdf-downloads-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.pdf-downloads-header p {
  font-size: 1.2rem;
  color: var(--text-gray);
}

.pdf-downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pdf-download-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdf-download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.pdf-download-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 5px 20px rgba(255, 122, 24, 0.3);
  transition: all 0.3s ease;
}

.pdf-download-card:hover .pdf-download-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(255, 122, 24, 0.4);
}

.pdf-download-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.pdf-download-card p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pdf-download-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

@media (max-width: 968px) {
  .pdf-downloads-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pdf-downloads-section {
    padding: 4rem 4vw;
  }

  .pdf-downloads-header h2 {
    font-size: 2rem;
  }

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

  .pdf-downloads-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pdf-download-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .pdf-downloads-section {
    padding: 3rem 1.5rem;
  }

  .pdf-downloads-header h2 {
    font-size: 1.75rem;
  }

  .pdf-download-card {
    padding: 1.5rem 1rem;
  }
}

/* Floating Quick Request Box */
.floating-quick-request {
  position: fixed;
  bottom: -100%;
  right: 2rem;
  width: 400px;
  max-width: calc(100vw - 4rem);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--primary);
}

.floating-quick-request.active {
  bottom: 120px;
}

.floating-quick-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  color: #fff;
  padding: 1.5rem;
  border-radius: 18px 18px 0 0;
  position: relative;
}

.floating-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.floating-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.floating-quick-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.floating-quick-header p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.floating-quick-form {
  padding: 1.5rem;
}

.floating-input,
.floating-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.floating-input:focus,
.floating-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.1);
}

.floating-textarea {
  resize: vertical;
  min-height: 80px;
}

.floating-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 9999;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.call-btn {
  background: linear-gradient(135deg, var(--primary-blue), #1e3a8a);
}

.call-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.quick-request-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
}

.quick-request-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 122, 24, 0.4);
}

.quick-request-btn.pulse {
  animation: pulse-button 1s ease-in-out;
}

@keyframes pulse-button {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.floating-btn svg {
  flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .live-stats-section,
  .calculator-section,
  .urgency-section,
  .trust-badges-section {
    padding: 3rem 1.5rem;
  }
  
  .live-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .live-stat-card {
    padding: 1.5rem;
  }
  
  .live-stat-number {
    font-size: 2.5rem;
  }
  
  .calculator-box {
    padding: 2rem 1.5rem;
  }
  
  .calculator-results {
    grid-template-columns: 1fr;
  }
  
  .urgency-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .urgency-visual {
    height: 300px;
  }
  
  .urgency-card {
    min-width: 150px;
    padding: 1.5rem;
  }
  
  .urgency-card-text strong {
    font-size: 2rem;
  }
  
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .floating-quick-request {
    right: 1rem;
    left: 1rem;
    width: auto;
    max-width: none;
  }
  
  .floating-actions {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .floating-btn span {
    display: none;
  }
  
  .floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .live-stats-grid,
  .trust-badges-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-quick-request.active {
    bottom: 80px;
  }
}

/* Testimonial Timeline */
.testimonial-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.timeline-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-location {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Werteinschätzung in 3 Minuten Section */
.quick-evaluation-section {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.05), rgba(30, 64, 175, 0.05));
  padding: 6rem 6vw;
}

.quick-evaluation-container {
  max-width: 1200px;
  margin: 0 auto;
}

.quick-evaluation-content {
  text-align: center;
}

.quick-evaluation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.quick-evaluation-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.quick-evaluation-subtitle {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.quick-evaluation-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.quick-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.quick-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.quick-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px rgba(255, 122, 24, 0.3);
}

.quick-step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.quick-step-content p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.quick-evaluation-cta {
  margin-top: 2rem;
}

/* Gründe für Verkauf Section */
.reasons-section {
  padding: 6rem 6vw;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(255, 122, 24, 0.03));
}

.reasons-container {
  max-width: 1600px;
  margin: 0 auto;
}

.reasons-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reasons-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.reasons-header p {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.reason-category {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.reason-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.reason-category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(255, 122, 24, 0.3);
}

.reason-category h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reason-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.reason-list li:last-child {
  border-bottom: none;
}

.reason-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

/* Altbau & Sanierungsbedürftige Immobilien Section */
.renovation-section {
  padding: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 122, 24, 0.05));
}

.renovation-container {
  max-width: 1600px;
  margin: 0 auto;
}

.renovation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.renovation-image-wrapper {
  position: relative;
  overflow: hidden;
}

.renovation-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

.renovation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.2), rgba(255, 122, 24, 0.2));
  pointer-events: none;
}

.renovation-text-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.renovation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.renovation-text-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.renovation-text-content > p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.renovation-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.renovation-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.renovation-benefit:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.renovation-benefit svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.renovation-benefit div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.renovation-benefit strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.renovation-benefit span {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.renovation-cta {
  margin-top: 1rem;
}

/* Unsere Standorte Section */
.locations-section {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(255, 122, 24, 0.03));
  padding: 6rem 6vw;
}

.locations-container {
  max-width: 1600px;
  margin: 0 auto;
}

.locations-header {
  text-align: center;
  margin-bottom: 4rem;
}

.locations-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.locations-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.locations-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.locations-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.locations-map {
  position: relative;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 20px;
  padding: 2rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.germany-map {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.germany-map-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.germany-pins circle {
  cursor: pointer;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(255, 122, 24, 0.4));
}

.germany-pins circle:hover {
  r: 10;
  filter: drop-shadow(0 4px 12px rgba(255, 122, 24, 0.6));
}

.germany-pins text {
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.location-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 122, 24, 0.3);
}

.location-details h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.location-details p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.location-region {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 122, 24, 0.1);
  border-radius: 20px;
}

/* Füße hoch / Relax Section */
.relax-section {
  padding: 0;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.05), rgba(30, 64, 175, 0.05));
}

.relax-container {
  max-width: 1600px;
  margin: 0 auto;
}

.relax-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.relax-image-wrapper {
  position: relative;
  overflow: hidden;
}

.relax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}

.relax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.1), rgba(30, 64, 175, 0.1));
  pointer-events: none;
}

.relax-text-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.relax-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1.5rem;
}

.relax-text-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.relax-text-content > p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.relax-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.relax-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.relax-benefit svg {
  color: var(--primary);
  flex-shrink: 0;
}

.relax-cta {
  margin-top: 1rem;
}

/* Mobile Responsive für neue Sections */
@media (max-width: 968px) {
  .quick-evaluation-section,
  .reasons-section {
    padding: 3rem 1.5rem;
  }
  
  .quick-evaluation-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .quick-step {
    padding: 1.5rem;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .reason-category {
    padding: 2rem;
  }
  
  .relax-content {
    grid-template-columns: 1fr;
  }
  
  .relax-image-wrapper {
    order: -1;
    height: 400px;
  }
  
  .relax-image {
    min-height: 400px;
  }
  
  .relax-text-content {
    padding: 2.5rem 1.5rem;
  }
  
  .relax-benefits {
    grid-template-columns: 1fr;
  }
  
  .renovation-content {
    grid-template-columns: 1fr;
  }
  
  .renovation-image-wrapper {
    order: -1;
    height: 400px;
  }
  
  .renovation-image {
    min-height: 400px;
  }
  
  .renovation-text-content {
    padding: 2.5rem 1.5rem;
  }
  
  .renovation-benefit {
    padding: 1rem;
  }
  
  .locations-section {
    padding: 3rem 1.5rem;
  }
  
  .locations-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .locations-map {
    min-height: 400px;
    padding: 2rem;
  }
  
  .location-item {
    padding: 1.5rem;
  }
  
  .testimonial-timeline {
    margin: 1rem 0;
    padding: 0.75rem;
  }
  
  .timeline-item {
    font-size: 0.85rem;
  }

  /* Bauzinsen Section Mobile */
  .interest-rates-section {
    padding: 3rem 1.5rem;
  }

  /* Vergleichstabelle Mobile */
  .comparison-section {
    padding: 3rem 1rem;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Garantien Section Mobile */
  .guarantees-section {
    padding: 3rem 1.5rem;
  }

  .guarantees-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Testimonials Mobile */
  .testimonials-section {
    padding: 3rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  /* Contact Section Mobile */
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-image {
    order: -1;
    height: 250px;
  }

  /* Services Section Mobile */
  .services-section {
    padding: 3rem 1.5rem;
  }

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

  .service-card {
    padding: 1.5rem;
  }

  /* Process Section Mobile */
  .process-section {
    padding: 3rem 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Calculator Section Mobile */
  .calculator-section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra small screens - Padding bereits oben definiert */
  .testimonial-card {
    padding: 1.25rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .guarantee-card {
    padding: 1.5rem;
  }

  .comparison-table-wrapper {
    padding: 0.5rem;
  }
  
  .comparison-table {
    min-width: auto;
    width: 100%;
  }

  .comparison-row {
    padding: 0.875rem 0;
    margin-bottom: 1rem;
  }

  .comparison-criterion {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .comparison-value {
    font-size: 0.8rem;
    padding: 0.75rem;
    margin-bottom: 0.625rem;
  }
  
  .comparison-value::before {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}

/* Image Slider Section */
.image-slider-section {
  padding: 0;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.05), rgba(43, 108, 246, 0.05));
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  height: 600px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 6vw;
  width: 100%;
}

.slider-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.slider-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0;
}

.slider-text p {
  font-size: 1.25rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.slider-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slider-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 32px;
  border-radius: 6px;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-prev {
  left: 2rem;
}

.slider-next {
  right: 2rem;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-prev svg,
.slider-next svg {
  width: 24px;
  height: 24px;
}

/* Process Steps Mini in Slider */
.process-steps-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.process-step-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 80px;
}

.step-number-mini {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(255, 122, 24, 0.3);
}

.process-step-mini span {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
  text-align: center;
}

.step-arrow-mini {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0.25rem;
}

@media (max-width: 968px) {
  .slider-container {
    height: 500px;
  }

  .slider-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 4vw;
  }

  .slider-text h2 {
    font-size: 2rem;
  }

  .slider-text p {
    font-size: 1.1rem;
  }

  .slider-image img {
    height: 300px;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
  }

  .slider-prev {
    left: 1rem;
  }

  .slider-next {
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .slider-container {
    height: 450px;
  }

  .slider-content {
    padding: 2rem 3vw;
  }

  .slider-text h2 {
    font-size: 1.75rem;
  }

  .slider-text p {
    font-size: 1rem;
  }

  .slider-image img {
    height: 250px;
  }

  .slider-dots {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 400px;
  }

  .slider-content {
    padding: 1.5rem 2vw;
    gap: 1.5rem;
  }

  .slider-text h2 {
    font-size: 1.5rem;
  }

  .slider-text p {
    font-size: 0.9rem;
  }

  .slider-image img {
    height: 200px;
  }

  .slider-prev,
  .slider-next {
    width: 36px;
    height: 36px;
  }

  .slider-prev svg,
  .slider-next svg {
    width: 20px;
    height: 20px;
  }
}

/* Sell Hero Section */
.sell-hero {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.05), rgba(43, 108, 246, 0.05));
  padding: 6rem 6vw;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.sell-hero .hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.sell-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0;
}

.sell-hero .hero-badge {
  margin: 0 auto;
  text-align: center;
}

.sell-hero .hero-description {
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
}

.sell-hero h1 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.sell-hero .hero-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.sell-hero .hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Why Us Section */
.why-us-section {
  padding: 6rem 6vw;
  background: #fff;
}

.why-us-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.why-us-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-us-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.why-us-section .section-header p {
  font-size: 1.2rem;
  color: var(--text-gray);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-us-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 5px 20px rgba(255, 122, 24, 0.3);
  margin-bottom: 0.5rem;
}

.why-us-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.why-us-card p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 968px) {
  .sell-hero {
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .sell-hero .hero-container {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .sell-hero .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .sell-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .sell-hero .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .sell-hero .hero-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1rem;
  }

  .sell-hero .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .sell-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .why-us-section {
    padding: 4rem 1.5rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us-section .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .sell-hero {
    padding: 2.5rem 1rem;
    min-height: auto;
  }

  .sell-hero .hero-container {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .sell-hero .hero-content {
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .sell-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    margin-bottom: 0.875rem;
  }

  .sell-hero .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .sell-hero .hero-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
  }

  .why-us-section {
    padding: 3rem 1rem;
  }

  .why-us-section .section-header {
    margin-bottom: 3rem;
  }

  .why-us-section .section-header h2 {
    font-size: 1.875rem;
  }

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

  .why-us-card {
    padding: 2rem 1.5rem;
  }

  .why-us-card h3 {
    font-size: 1.2rem;
  }

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

@media (max-width: 480px) {
  .sell-hero {
    padding: 2rem 0.75rem;
    min-height: auto;
  }

  .sell-hero .hero-container {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .sell-hero .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .sell-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .sell-hero .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .sell-hero .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.75rem;
  }

  .sell-hero .hero-actions {
    gap: 0.625rem;
    margin-top: 1.25rem;
  }

  .sell-hero .hero-actions .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .why-us-section {
    padding: 2.5rem 0.75rem;
  }

  .why-us-section .section-header {
    margin-bottom: 2.5rem;
  }

  .why-us-section .section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .why-us-section .section-header p {
    font-size: 1rem;
  }

  .why-us-card {
    padding: 1.5rem 1rem;
    gap: 0.875rem;
  }

  .why-us-icon {
    width: 56px;
    height: 56px;
  }

  .why-us-card h3 {
    font-size: 1.1rem;
  }

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

/* Reasons Hero Section */
.reasons-hero {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.05), rgba(43, 108, 246, 0.05));
  padding: 6rem 6vw;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.reasons-hero .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
  text-align: center;
  box-sizing: border-box;
}

.reasons-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

.reasons-hero .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Intro Section */
.intro-section {
  padding: 4rem 6vw;
  background: #fff;
}

.intro-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Reason Intro */
.reason-intro {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.reason-list li {
  margin-bottom: 1rem;
}

.reason-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* FAQ Reasons Section */
.faq-reasons-section {
  padding: 6rem 6vw;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.03), rgba(255, 122, 24, 0.03));
}

.faq-reasons-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-reasons-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-reasons-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-reasons-header p {
  font-size: 1.2rem;
  color: var(--text-gray);
}

.faq-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-reason-item {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.faq-reason-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.faq-reason-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.faq-reason-item p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* Why Professional Section */
.why-professional-section {
  padding: 6rem 6vw;
  background: #fff;
}

.why-professional-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-professional-content {
  max-width: 1000px;
  margin: 0 auto;
}

.why-professional-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.why-professional-text > p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.why-professional-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-professional-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 122, 24, 0.05));
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.why-professional-list li svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.25rem;
}

.why-professional-list li div {
  flex: 1;
}

.why-professional-list li strong {
  color: var(--text-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* Next Steps Section */
.next-steps-section {
  padding: 6rem 6vw;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05), rgba(255, 122, 24, 0.05));
}

.next-steps-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.next-steps-content {
  text-align: center;
}

.next-steps-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.next-steps-content > p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.next-step-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.next-step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.next-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 20px rgba(255, 122, 24, 0.3);
}

.next-step-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.next-step-card p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.next-steps-cta {
  margin-top: 2rem;
}

@media (max-width: 968px) {
  .reasons-hero {
    padding: 3rem 1.5rem;
    min-height: auto;
  }

  .reasons-hero .hero-container {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .reasons-hero .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .reasons-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .reasons-hero .hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .reasons-hero .hero-badge {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1rem;
  }

  .reasons-hero .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .reasons-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .intro-section {
    padding: 3rem 4vw;
  }

  .intro-content h2 {
    font-size: 2rem;
  }

  .faq-reasons-section {
    padding: 4rem 4vw;
  }

  .faq-reasons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-professional-section {
    padding: 4rem 4vw;
  }

  .why-professional-text h2 {
    font-size: 2rem;
  }

  .next-steps-section {
    padding: 4rem 4vw;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .reasons-hero {
    padding: 2.5rem 1rem;
    min-height: auto;
  }

  .reasons-hero .hero-container {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .reasons-hero .hero-content {
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .reasons-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    margin-bottom: 0.875rem;
  }

  .reasons-hero .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .reasons-hero .hero-badge {
    font-size: 0.8rem;
    padding: 0.35rem 0.8rem;
  }

  .reasons-hero .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .reasons-hero .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .intro-content h2 {
    font-size: 1.75rem;
  }

  .faq-reasons-section {
    padding: 3rem 3vw;
  }

  .faq-reasons-header h2 {
    font-size: 2rem;
  }

  .why-professional-section {
    padding: 3rem 3vw;
  }

  .why-professional-text h2 {
    font-size: 1.75rem;
  }

  .next-steps-section {
    padding: 3rem 3vw;
  }

  .next-steps-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .reasons-hero {
    padding: 2rem 0.75rem;
    min-height: auto;
  }

  .reasons-hero .hero-container {
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .reasons-hero .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .reasons-hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .reasons-hero .hero-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .reasons-hero .hero-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.75rem;
  }

  .reasons-hero .hero-actions {
    gap: 0.625rem;
    margin-top: 1.25rem;
  }

  .reasons-hero .hero-actions .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .intro-section {
    padding: 2rem 2vw;
  }

  .intro-content h2 {
    font-size: 1.5rem;
  }

  .faq-reasons-section {
    padding: 2rem 2vw;
  }

  .faq-reasons-header h2 {
    font-size: 1.75rem;
  }

  .faq-reason-item {
    padding: 1.5rem;
  }

  .why-professional-section {
    padding: 2rem 2vw;
  }

  .why-professional-text h2 {
    font-size: 1.5rem;
  }

  .why-professional-list li {
    padding: 1rem;
  }

  .next-steps-section {
    padding: 2rem 2vw;
  }

  .next-steps-content h2 {
    font-size: 1.75rem;
  }

  .next-step-card {
    padding: 2rem 1.5rem;
  }
}