/* =========================================================
   VERIFY CSS SYSTEM
   Datei: /assets/css/sections/home-sections.css

   INHALT
   01) Intro / Info-Tiles
   02) Project-Übersicht
   03) Flow / Prozess
   04) CTA
   05) Responsive (Home-Sektionen only)

   HINWEIS
   Diese Datei enthält die normalen Startseiten-Sektionen
   unterhalb des Hero-Bereichs.
   Keine Header-, Hero-, Admin- oder Project-Detail-Styles.
   ========================================================= */


/* =========================================================
   01) INTRO / INFO-TILES
   Einleitungssektion mit Info-Kacheln
   ========================================================= */

.verify-intro{
  margin-top:30px;
}

.intro-panel{
  padding:clamp(22px, 4vw, 36px);
}

.info-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.glass-tile{
  padding:24px 20px;
}

.glass-tile h3{
  margin-bottom:12px;
  color:#f7fbff;
}

.glass-tile p{
  margin:0;
}


/* =========================================================
   02) PROJECT-ÜBERSICHT
   Projektkarten auf der Startseite
   ========================================================= */

.verify-projects{
  margin-top:62px;
}

.project-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.project-card{
  padding:22px;
  min-height:100%;
}

.project-top{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:18px;
}

.project-seal{
  flex:0 0 76px;
  width:76px;
  height:76px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.18), transparent 38%),
    rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.18),
    0 10px 22px rgba(0,0,0,.18);
}

.project-seal img{
  width:100%;
  height:100%;
  object-fit:contain;
  filter:drop-shadow(0 6px 12px rgba(255,191,58,.18));
}

.project-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.project-label,
.project-status{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:28px;
  padding:6px 10px;
  border-radius:999px;
  font-size:.68rem;
  font-weight:800;
}

.project-label{
  background:rgba(126,243,255,.08);
  border:1px solid rgba(126,243,255,.18);
  color:var(--cyan);
}

.project-status{
  background:rgba(118,255,183,.09);
  border:1px solid rgba(118,255,183,.18);
  color:#baffdb;
}

.project-card h3{
  margin-bottom:8px;
  color:#ffffff;
}

.project-type{
  color:var(--cyan);
  font-weight:700;
  margin-bottom:10px;
}

.project-note{
  min-height:52px;
}

.project-actions{
  margin-top:20px;
}


/* =========================================================
   03) FLOW / PROZESS
   Schritt-für-Schritt-Sektion
   ========================================================= */

.verify-flow{
  margin-top:64px;
}

.flow-panel{
  padding:clamp(22px, 4vw, 38px);
}

.flow-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.flow-step{
  padding:22px 20px 20px;
}

.step-no{
  display:inline-flex;
  min-width:54px;
  min-height:30px;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
  border-radius:999px;
  background:rgba(255,215,106,.10);
  border:1px solid rgba(255,215,106,.18);
  color:var(--gold);
  font-size:.75rem;
  font-weight:800;
}

.flow-step h3{
  margin-bottom:10px;
}

.flow-step p{
  margin:0;
}


/* =========================================================
   04) CTA
   Abschluss-Sektion mit Call-to-Action
   ========================================================= */

.verify-cta{
  margin-top:62px;
}

.cta-panel{
  padding:clamp(22px, 4vw, 36px);
  display:flex;
  gap:24px;
  align-items:center;
  justify-content:space-between;
}

.cta-copy{
  max-width:820px;
}

.cta-copy h2{
  margin-bottom:12px;
}

.cta-copy p{
  margin:0;
}


/* =========================================================
   05) RESPONSIVE (HOME-SEKTIONEN ONLY)
   Nur Startseiten-Sektionen unterhalb des Hero
   ========================================================= */

@media (max-width: 1160px){
  .info-grid,
  .project-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

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

  .cta-panel{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 760px){
  .intro-panel,
  .flow-panel,
  .cta-panel{
    padding:18px;
  }

  .info-grid,
  .project-grid,
  .flow-grid{
    grid-template-columns:1fr;
  }

  .project-top{
    align-items:flex-start;
  }
}
