/* ===========================================================
   maison.work — Integrationen Page
   =========================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #0A1F12;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* Header */
header { padding: 18px 0; border-bottom: 1px solid #ECECE6; background: white; position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 32px; width: auto; display: block; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: #4A5C50; text-decoration: none; font-size: 14px; font-weight: 500; }
nav a:hover { color: #0C3D20; }
nav a.active { color: #0C3D20; font-weight: 600; }
.nav-cta { background: #0C3D20; color: white !important; padding: 10px 20px; border-radius: 8px; font-weight: 600; }
.nav-cta:hover { background: #082b16; }

/* Hero */
.hero {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, #F4F7F2 0%, #ffffff 100%);
  text-align: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #DCEDD6; color: #0C3D20;
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow .dot { width: 6px; height: 6px; background: #2ECC71; border-radius: 50%; }
h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: #0A1F12;
  margin-bottom: 20px;
}
h1 em { font-style: normal; color: #0C3D20; }
.hero-sub {
  font-size: 18px;
  color: #4A5C50;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #ECECE6;
}
.stat { text-align: center; }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #0C3D20;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 14px; color: #6e7c70; font-weight: 500; }

/* How it works */
.how-it-works {
  padding: 64px 0 56px;
  background: white;
  border-top: 1px solid #ECECE6;
}
.section-head { margin-bottom: 36px; max-width: 820px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: #0C3D20;
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid #DCE6D8;
}
.section-eyebrow .dot { width: 6px; height: 6px; background: #2ECC71; border-radius: 50%; }
h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.05; letter-spacing: -0.025em;
  color: #0A1F12; margin-bottom: 12px;
}
h2 em { font-style: normal; color: #0C3D20; }
.section-sub { font-size: 18px; color: #4A5C50; max-width: 600px; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.step-card {
  background: #FBFBF7;
  border: 1px solid #ECECE6;
  border-radius: 18px;
  padding: 28px 30px;
}
.step-num {
  font-size: 44px;
  font-weight: 800;
  color: #2ECC71;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  opacity: 0.85;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0A1F12;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-card p { font-size: 15px; color: #4A5C50; line-height: 1.6; }
.step-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  color: #0C3D20;
  font-weight: 600;
  background: #DCEDD6;
  padding: 4px 12px;
  border-radius: 999px;
}

/* Integrations Grid */
.integrations {
  padding: 64px 0 72px;
  background: #FBFBF7;
  border-top: 1px solid #ECECE6;
}
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.integration-card {
  background: white;
  border: 1px solid #ECECE6;
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(12, 61, 32, 0.08);
  border-color: #C7D7BF;
}
.integration-card.highlight {
  background: linear-gradient(135deg, #F4F7F2, #DCEDD6);
  border-color: #C7D7BF;
}
.logo-placeholder {
  width: 100%;
  height: 56px;
  background: #F4F7F2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 10px 16px;
  overflow: hidden;
}
.logo-placeholder img {
  height: 30px;
  width: auto;
  max-width: 100%;
  display: block;
}
.integration-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0A1F12;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.integration-card p {
  font-size: 13px;
  color: #4A5C50;
  line-height: 1.55;
  flex-grow: 1;
}
.integration-card.highlight p { color: #2E4A38; }
.integration-card .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #0C3D20;
}
.integration-card .status .dot-live {
  width: 7px; height: 7px;
  background: #2ECC71;
  border-radius: 50%;
}

/* CTA Section */
.cta-section {
  padding: 64px 0 72px;
  background: white;
  border-top: 1px solid #ECECE6;
  text-align: center;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: #4A5C50; max-width: 520px; margin: 0 auto 36px; line-height: 1.6; }
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary { background: #0C3D20; color: white; }
.btn-primary:hover { background: #082b16; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(12, 61, 32, 0.25); }
.btn-outline { background: white; color: #0C3D20; border: 2px solid #0C3D20; }
.btn-outline:hover { background: #F4F7F2; transform: translateY(-1px); }
.cta-note { font-size: 14px; color: #6e7c70; margin-top: 14px; }

/* Footer */
.site-footer {
  background: #0A1F12;
  color: #8FA895;
  padding: 52px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-col .desc { font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: #8FA895; text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #2ECC71; }
.footer-socials { display: flex; gap: 12px; margin-top: 18px; }
.footer-socials a { color: #8FA895; transition: color 0.2s; }
.footer-socials a:hover { color: #2ECC71; }
.footer-meta {
  border-top: 1px solid #1e3828;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-meta a { color: #8FA895; text-decoration: none; }
.footer-meta a:hover { color: #2ECC71; }

/* Responsive */
@media (max-width: 900px) {
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .integrations-grid { grid-template-columns: 1fr; }
  nav a:not(.nav-cta) { display: none; }
  h1 { font-size: clamp(32px, 8vw, 44px); }
  .footer-meta { flex-direction: column; text-align: center; }
}
