/* Automationskollen — product-page specific, extends base */

.ak-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }
@media (max-width: 720px) { section { padding: 4rem 0; } }

.section-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.section-centered h2 { margin-bottom: 1.5rem; }

/* Hero */
.hero { padding: 4rem 0 6rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero .lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.25rem;
  animation: fadeUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-ctas {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trust-strip {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.trust-strip .sep { color: var(--line-strong); margin: 0 0.5rem; }

.hero-art {
  animation: fadeUp 0.9s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-art svg {
  width: 100%;
  max-width: 360px;
  display: block;
  margin-left: auto;
  height: auto;
}
@media (max-width: 880px) {
  .hero-art svg { margin: 0 auto; max-width: 280px; }
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
@media (max-width: 720px) {
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
}
.step .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--muted); margin: 0; }

/* Uses section */
.uses {
  text-align: center;
}
.uses h2 { margin: 0 auto 1.5rem; max-width: 720px; }
.uses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
@media (max-width: 880px) { .uses-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .uses-grid { grid-template-columns: 1fr; } }
.use-card {
  border: 1px solid var(--line);
  padding: 1.75rem;
  border-radius: 8px;
  background: var(--paper);
}
.use-card .marker {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-dot);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.use-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.use-card p { color: var(--muted); margin: 0; font-size: 0.97rem; }

/* Examples */
.examples-section {
  background: var(--paper-soft);
  padding: 6rem 2rem;
}
.examples-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.examples-inner h2 { margin-bottom: 0.75rem; }
.examples-inner > p {
  color: var(--muted);
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}
@media (max-width: 720px) {
  .examples-grid { grid-template-columns: 1fr; }
}
.example-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
}
.example-card .ex-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.example-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.example-card .ex-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.example-card .ex-meta span {
  font-size: 0.85rem;
  color: var(--muted);
}
.example-card .ex-meta strong {
  color: var(--ink);
  font-weight: 500;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 3rem auto 0;
}
details {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0.5rem;
}
details:last-of-type { border-bottom: 1px solid var(--line); }
details summary {
  font-family: var(--serif);
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--muted);
  font-weight: 300;
  flex-shrink: 0;
}
details[open] summary::after { content: "−"; }
details p {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 100%;
}
details[open] {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

/* Final CTA */
.final-cta {
  background: var(--paper-soft);
  padding: 6rem 2rem;
  text-align: center;
}
.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p {
  color: var(--muted);
  margin: 0 auto 2rem;
}
.final-cta .microcopy {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.final-cta .microcopy a { color: var(--ink); }
