/* CAD-Schmiede — V2 Startseite (angelehnt an sachs-engineering.de) */
/* Ergänzt style.css, überschreibt keine bestehenden Klassen. */

/* ---------- Hero ---------- */

.v2-hero { padding: 72px 0 96px; }

.v2-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}

.v2-hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--color-dark);
}

.v2-hero-copy h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.v2-hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(20, 38, 44, 0.35);
}

.v2-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ---------- Intro + Checkliste ---------- */

.v2-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.v2-intro-copy h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin: 0 0 22px;
  line-height: 1.25;
}

.v2-intro-copy p {
  color: var(--color-text-muted);
  margin: 0 0 16px;
}

.v2-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.v2-checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--color-text-muted);
  font-size: 0.98rem;
}

.v2-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 800;
}

.v2-checklist li strong {
  display: block;
  color: var(--color-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ---------- Stats ---------- */

.v2-stats { padding: 64px 0; }

.v2-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.v2-stats-grid div {
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.v2-stats-grid div:first-child { border-left: none; }

.v2-stats-grid strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
}

.v2-stats-grid div > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.v2-stats-grid strong .v2-counter {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* ---------- Checklisten (Leistungen / Prinzipien) ---------- */

.v2-list-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  max-width: 980px;
}

.v2-list-check--single {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.v2-list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-accent);
  font-weight: 800;
}

.v2-list-check li a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.v2-list-check li a:hover { color: var(--color-accent-hover); }

/* ---------- Ziel / Integration Banner ---------- */

.v2-goal, .v2-integration {
  padding: 56px 0;
  text-align: center;
}

.v2-goal p, .v2-integration p {
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 auto;
}

.v2-goal p { color: var(--color-dark); }
.v2-goal p strong, .v2-goal p { color: var(--color-dark); }
.v2-integration p { color: #fff; }

.v2-goal { background: var(--color-bg); }

/* ---------- Werkzeuge & Methodenkompetenz ---------- */

.v2-tools .section-head { margin-left: auto; margin-right: auto; }

.v2-tools-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 980px;
  margin: 0 auto;
}

.v2-tools-columns h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--color-dark);
}

.v2-tools-columns .skill-tags li {
  background: #fff;
}

/* ---------- FAQ ---------- */

.v2-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}

.v2-faq-item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 4px 24px;
  background: #fff;
}

.v2-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 32px 20px 0;
  font-weight: 600;
  color: var(--color-dark);
  position: relative;
  font-size: 1rem;
}

.v2-faq-item summary::-webkit-details-marker { display: none; }

.v2-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.v2-faq-item[open] summary::after {
  content: "–";
}

.v2-faq-item p {
  margin: 0 0 22px;
  color: var(--color-text-muted);
}

/* ---------- Branchen ---------- */

.v2-branchen-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.v2-branchen-grid h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin: 0 0 16px;
}

.v2-branchen-grid p {
  color: var(--color-text-muted);
  margin: 0;
}

.v2-branchen-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v2-branchen-chips li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-dark);
}

/* ---------- Bottom CTA ---------- */

.v2-cta { padding: 88px 0; }

.v2-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.v2-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.v2-cta-inner p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .v2-hero-grid { grid-template-columns: 1fr; }
  .v2-hero-media { max-width: 320px; margin: 0 auto; order: -1; }
  .v2-intro-grid { grid-template-columns: 1fr; }
  .v2-list-check { grid-template-columns: 1fr; }
  .v2-tools-columns { grid-template-columns: 1fr; gap: 32px; }
  .v2-branchen-grid { grid-template-columns: 1fr; }
  .v2-stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .v2-stats-grid div { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding: 20px 0 0; }
  .v2-stats-grid div:first-child { border-top: none; padding-top: 0; }
}

@media (max-width: 640px) {
  .v2-faq-item summary { padding-right: 28px; }
}
