﻿/* Page: About
   Loaded after site.css. Keep only styles used by this page here. */

/* Über mich: wichtiger Einordnungsblock */
.about-more-section {
  margin-top: 1.5rem;
}

.about-highlight-box {
  padding: 1.4rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.22);
  border-left: 5px solid var(--brand);
  background: linear-gradient(180deg, rgba(62,166,161,.07) 0%, rgba(62,166,161,.035) 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.055);
}

.about-highlight-box p:last-child {
  margin-bottom: 0;
}

/* Über mich: Erfahrungsabschnitt */
.about-experience-section {
  margin-top: 2.6rem;
}

.about-experience-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;

  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.about-experience-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;

  padding: 1rem;
  border-radius: 16px;
  background: rgba(247, 148, 30, 0.12);
  border: 1px solid rgba(247, 148, 30, 0.24);
  text-align: center;
}

.about-experience-badge strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  color: #c85a00;
}

.about-experience-badge span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  color: #123f46;
}

.about-experience-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .about-experience-card {
    grid-template-columns: 1fr;
  }

  .about-experience-badge {
    min-height: auto;
    align-items: flex-start;
    text-align: left;
  }
}

/* Über mich: Branchen und Praxisverständnis */
.about-industry-section {
  margin-top: 2.6rem;
}

.about-industry-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.5rem;
  align-items: start;

  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.about-industry-text p:last-child {
  margin-bottom: 0;
}

.about-industry-side {
  padding: 1.1rem;
  border-radius: 16px;
  background: rgba(62, 166, 161, 0.075);
  border: 1px solid rgba(62, 166, 161, 0.18);
}

.about-side-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.about-industry-side ul {
  margin: 0;
  padding-left: 1.15rem;
}

.about-industry-side li {
  margin-bottom: 0.45rem;
  color: #4b5f70;
  font-size: 0.98rem;
  line-height: 1.45;
}

.about-industry-side li:last-child {
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .about-industry-card {
    grid-template-columns: 1fr;
  }
}

/* Über mich: Erfahrung über die reine Technik hinaus */
.about-process-section {
  margin-top: 2.6rem;
}

.about-process-card {
  display: grid;
  gap: 0.9rem;

  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(247, 148, 30, 0.22);
  background:
    radial-gradient(circle at top right, rgba(247, 148, 30, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.about-process-item {
  position: relative;
  margin: 0;
  padding: 1rem 1rem 1rem 3.3rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(247, 148, 30, 0.16);
}

.about-process-item::before {
  position: absolute;
  left: 1rem;
  top: 1rem;

  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  background: rgba(247, 148, 30, 0.14);
  color: #c85a00;
  font-weight: 850;
  font-size: 0.82rem;
}

.about-process-item:nth-child(1)::before {
  content: "01";
}

.about-process-item:nth-child(2)::before {
  content: "02";
}

.about-process-item:nth-child(3)::before {
  content: "03";
}

@media (max-width: 640px) {
  .about-process-card {
    padding: 1.1rem;
  }

  .about-process-item {
    padding: 0.95rem 0.95rem 0.95rem 3rem;
  }

  .about-process-item::before {
    left: 0.85rem;
  }
}

/* Über mich: kleinere Firmen ohne IT-Abteilung */
.about-smallbiz-section {
  margin-top: 2.6rem;
}

.about-smallbiz-card {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(62, 166, 161, 0.22);
  background:
    radial-gradient(circle at top right, rgba(62, 166, 161, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.about-smallbiz-intro {
  margin-bottom: 1.2rem;
}

.about-smallbiz-list {
  list-style: none;
  margin: 1.2rem 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.about-smallbiz-list li {
  position: relative;
  margin: 0;
  padding: 0.95rem 1rem 0.95rem 2.6rem;

  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(62, 166, 161, 0.16);
  color: #4b5f70;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.035);
}

.about-smallbiz-list li::before {
  content: "✓";
  position: absolute;
  left: 0.9rem;
  top: 0.95rem;

  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(62, 166, 161, 0.14);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 0.85rem;
}

.about-smallbiz-end {
  margin-top: 1.2rem;
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(62, 166, 161, 0.16);
  font-weight: 500;
  color: #123f46;
}

@media (max-width: 720px) {
  .about-smallbiz-card {
    padding: 1.2rem;
  }

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

/* Über mich: technische Schwerpunkte */
.about-tech-section {
  margin-top: 2.6rem;
}

.about-tech-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;

  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.about-tech-text p:last-child {
  margin-bottom: 0;
}

.about-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(62, 166, 161, 0.07);
  border: 1px solid rgba(62, 166, 161, 0.16);
}

.about-tech-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(62, 166, 161, 0.18);
  color: #123f46;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.2;
}

@media (max-width: 820px) {
  .about-tech-card {
    grid-template-columns: 1fr;
  }
}

/* Über mich: Wie ich arbeite */
.about-work-section {
  margin-top: 2.6rem;
}

.about-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-work-item {
  position: relative;
  margin: 0;
  padding: 1.25rem 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.about-work-item::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border-radius: 13px;
  background: rgba(62, 166, 161, 0.12);
  color: var(--brand-dark);
  font-weight: 850;
  font-size: 0.9rem;
  line-height: 38px;
  text-align: center;
}

.about-work-item:nth-child(1)::before {
  content: "01";
}

.about-work-item:nth-child(2)::before {
  content: "02";
}

.about-work-item:nth-child(3)::before {
  content: "03";
}

.about-work-item:hover {
  border-color: rgba(62, 166, 161, 0.32);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.075);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .about-work-grid {
    grid-template-columns: 1fr;
  }
}

/* Über mich: Abschluss-CTA */
.about-final-cta-section {
  padding-top: 3.2rem;
}

.about-final-cta .software-final-cta__content p + p {
  margin-top: 0.45rem;
}

/* =========================
   Über mich: Hero verfeinern
   ========================= */

.about-hero {
  padding-top: 2.8rem;
  padding-bottom: 2.4rem;
}

.about-hero .hero-title {
  max-width: 860px;
  margin-bottom: 1.4rem;
}

.about-hero .hero-content {
  align-items: center;
  gap: 2.5rem;
}

.about-hero .hero-text {
  max-width: 760px;
}

.about-hero .lead {
  font-size: 1.12rem;
  line-height: 1.75;
}

.about-hero .hero-media {
  flex: 0 0 400px;
}

.about-hero .hero-image {
  max-width: 400px;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(62, 166, 161, 0.18);
  background: #fff;
  padding: 0.35rem;
}

@media (max-width: 900px) {
  .about-hero .hero-content {
    align-items: flex-start;
    gap: 1.5rem;
  }

  .about-hero .hero-media {
    flex: none;
  }

  .about-hero .hero-image {
    max-width: 360px;
  }
}
