/* =========================================================
   metallspritzen.css — Site-spezifische Styles
   Ergaenzt tmh-base.css + tmh-components.css
   ========================================================= */

/* ---------- Layout-Hilfsklassen ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 700px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Page Header ---------- */
.page-header {
  background: var(--c-bg-dark);
  padding: 72px 0 48px;
  text-align: center;
}
.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(7,19,35,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(7,19,35,0.14);
  transform: translateY(-2px);
}
.card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 12px;
}
.card p {
  color: #555;
  line-height: 1.65;
  font-size: 0.96rem;
  margin: 0;
}

/* ---------- Verfahren Cards (Navy BG) ---------- */
.verfahren-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
}
.verfahren-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 12px;
}
.verfahren-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.verfahren-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Application Cards (with photo bg) ---------- */
.app-card {
  background: var(--c-navy);
  border-radius: 12px;
  overflow: hidden;
}

/* ---------- Verfahren Detail (Ablauf) ---------- */
.verfahren-detail {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.verfahren-detail-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  min-width: 64px;
  opacity: 0.85;
}
.verfahren-detail h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 12px;
}
.verfahren-detail p {
  color: #555;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .verfahren-detail { flex-direction: column; gap: 12px; }
  .verfahren-detail-num { font-size: 2.5rem; }
}

/* ---------- Process Steps ---------- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.process-step-icon {
  background: rgba(255,255,255,0.08);
  border: 2px solid var(--c-primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  .process-step { flex-direction: column; gap: 12px; }
}

/* ---------- Checkliste ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--c-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}
.check-list-light li {
  color: rgba(255,255,255,0.82);
}

/* ---------- Buttons Erweiterung ---------- */
.btn-white {
  background: #fff;
  color: var(--c-primary);
  border: 2px solid #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

/* ---------- Formular ---------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-navy);
}
.form-input {
  padding: 12px 14px;
  border: 1.5px solid #d0d5dd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Rubik', sans-serif;
  color: #222;
  background: #fff;
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(221,56,50,0.12);
}
textarea.form-input { resize: vertical; }

/* ---------- Kontakt Cards ---------- */
.contact-card a {
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* ---------- Section Header ---------- */
.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 20px;
  line-height: 1.1;
}
.section-subtitle {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 680px;
}
.section-header {
  text-align: center;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---------- Section Spacing ---------- */
.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .page-header { padding: 52px 0 36px; }
}
