/* =============================================
   RDDWeb — index.css (Hauptseite spezifisch)
   ============================================= */

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, #F0F5FA 0%, #E8EFF7 100%);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #DDE4EC;
}

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

.hero__text {}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #2C5F8A;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 1.1rem;
  color: #1A1A2E;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #445566;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero__note {
  font-size: 0.85rem;
  color: #6C7A89;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.hero__image .img-placeholder { min-height: 340px; font-size: 0.9rem; }

.breadcrumb-wrap {
  padding: 0.75rem 0;
  border-bottom: 1px solid #EEF2F7;
}

@media (max-width: 768px) {
  .hero { padding: 3rem 0 2.5rem; }
  .hero .container { grid-template-columns: 1fr; gap: 2rem; }
  .hero__image { order: -1; }
  .hero__image .img-placeholder { min-height: 220px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

/* --- Intro / Benefits Section --- */
.benefits {
  padding: 4rem 0;
}

.benefits__intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #445566;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover { box-shadow: 0 6px 20px rgba(44,95,138,0.1); transform: translateY(-3px); }

.benefit-card__icon {
  width: 56px;
  height: 56px;
  background: #EEF4FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #2C5F8A;
}

.benefit-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: #667788; margin: 0; }

@media (max-width: 768px) {
  .benefits__grid { grid-template-columns: 1fr; gap: 1rem; }
  .benefit-card { text-align: left; display: flex; align-items: flex-start; gap: 1rem; }
  .benefit-card__icon { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
}

/* --- Tool Introduction --- */
.tool-intro {
  padding: 4.5rem 0;
}

.tool-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tool-intro__content h2 { margin-bottom: 1rem; }
.tool-intro__content p { color: #445566; margin-bottom: 1.5rem; }

.tool-intro__features {
  margin-bottom: 2rem;
}

.tool-intro__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #EEF4FA;
  color: #2C5F8A;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
}

.tool-intro__image .img-placeholder { min-height: 300px; }

@media (max-width: 768px) {
  .tool-intro .container { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- Steps / HowTo Guide --- */
.howto {
  padding: 4.5rem 0;
}

.howto__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.howto__header p { color: #445566; font-size: 1.05rem; margin-top: 0.75rem; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step {
  display: grid;
 /* grid-template-columns: auto 1fr auto;*/
  gap: 2rem;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 2rem;
  transition: box-shadow 0.2s;
  display:block;position:relative;
}
.step:hover { box-shadow: 0 4px 16px rgba(44,95,138,0.09); }

.step:nth-child(even) {
  /*grid-template-columns: auto 1fr auto;*/
}

.step__number {
  width: 52px;
  height: 52px;
  background: #2C5F8A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step__content {width:70%; float:left;}
.step__content h3 { margin-bottom: 0.5rem; }
.step__content p { color: #445566; font-size: 0.975rem; margin-bottom: 0.5rem; }

.step__tip {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  background: #EEF4FA;
  border-left: 3px solid #2C5F8A;
  padding: 0.5rem 0.75rem;
  border-radius: 0 5px 5px 0;
  font-size: 0.875rem;
  color: #2C5F8A;
  margin-top: 0.75rem;
}

.step__image { min-height: 160px; width: 28%; font-size: 0.8rem;float:left;padding-left:2%; }

.step__image img{border-radius: 5%;}
@media (max-width: 768px) {
  /*.step { grid-template-columns: auto 1fr; }*/
  .step__image { float: left; width:100%; }
  .step__tip { float: left; width:100%;}
  .step__content p { color: #445566; font-size: 0.975rem; margin-bottom: 0.5rem; float: left; width:100%; }
  .step__number {float: left; }
}

/* --- Comparison Table --- */
.comparison {
  padding: 4.5rem 0;
}

.comparison__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}
.comparison__header p { color: #445566; margin-top: 0.75rem; }

.comparison__note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #667788;
}
.comparison__note strong { color: #2C5F8A; }

.highlight-row td { font-weight: 600; color: #2C5F8A !important; background: #EEF4FA !important; }
.highlight-row td:first-child { border-left: 3px solid #2C5F8A; }

/* --- Use Cases --- */
.usecases {
  padding: 4.5rem 0;
}

.usecases__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}
.usecases__header p { color: #445566; margin-top: 0.75rem; }

.usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.usecase-card {
  background: #FFFFFF;
  border: 1px solid #E8ECF0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.usecase-card:hover { box-shadow: 0 6px 20px rgba(44,95,138,0.1); transform: translateY(-3px); }

.usecase-card__icon {
  width: 52px;
  height: 52px;
  background: #EEF4FA;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2C5F8A;
  margin-bottom: 1.1rem;
}

.usecase-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.usecase-card p { font-size: 0.9rem; color: #667788; margin: 0; }

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

/* --- FAQ --- */
.faq {
  padding: 4.5rem 0;
}

.faq__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}
.faq__header p { color: #445566; margin-top: 0.75rem; }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 5rem 0;
  text-align: center;
}

.cta-banner__inner {
  background: linear-gradient(135deg, #2C5F8A 0%, #1A3D5C 100%);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  color: #fff;
}

.cta-banner h2 { color: #fff; margin-bottom: 0.85rem; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  justify-content: center;
  margin-top: 1rem;
}

/* --- Section title style --- */
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 { margin-bottom: 0.6rem; }
.section-title p { color: #445566; max-width: 620px; margin: 0 auto; }

/* --- Tag / badge --- */
.tag-free {
  display: inline-block;
  background: #E6F7E6;
  color: #2E7D32;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
