/*
Theme Name: Pronto AI
Theme URI: https://pronto-ai.de
Description: Offizielles Pronto AI Website Theme
Author: Pronto AI
Version: 1.0
Text Domain: pronto-ai
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --brand: #f97316;
  --brand-dark: #ea580c;
  --brand-light: #fff7ed;
  --text: #0f172a;
  --text-2: #64748b;
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}
[data-theme="dark"] {
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --bg: #0f172a;
  --bg-2: #1e293b;
  --border: #334155;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--brand); }
img { max-width: 100%; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
  font-size: 0.95rem; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--orange { background: var(--brand); color: #fff; }
.btn--orange:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(249,115,22,0.4); }
.btn--ghost { background: transparent; border: 2px solid var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { background: #fff7ed; }
.btn--full { width: 100%; justify-content: center; }
.section { padding: 80px 0; }
.section__label { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
.section__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.section__sub { font-size: 1rem; color: var(--text-2); max-width: 600px; margin: 0 auto; }
.section__header { text-align: center; margin-bottom: 0; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .nav { background: rgba(15,23,42,0.95); }
.nav__inner {
  display: flex; align-items: center; gap: 32px;
  height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.nav__logo {
  font-size: 1.25rem; font-weight: 900; text-decoration: none; color: var(--text);
  display: flex; align-items: center; gap: 6px;
}
.nav__logo-dot { color: var(--brand); }
.nav__links { display: flex; gap: 28px; list-style: none; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--text-2); font-size: 0.9rem; font-weight: 500; transition: color 0.15s; }
.nav__links a:hover { color: var(--brand); }
.nav__cta { margin-left: 8px; }
.nav__theme {
  background: none; border: none; cursor: pointer; color: var(--text-2);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; transition: background 0.15s;
}
.nav__theme:hover { background: var(--bg-2); }

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #0f172a 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
  color: #fb923c; font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px; margin-bottom: 24px;
}
.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
.hero__title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 24px; }
.hero__title em { font-style: normal; color: var(--brand); }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 40px; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn--outline-hero { background: transparent; border: 2px solid rgba(255,255,255,0.25); color: #fff; }
.btn--outline-hero:hover { border-color: rgba(255,255,255,0.7); }
.hero__trust { display: flex; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.hero__trust-item::before { content: '✓'; color: var(--brand); font-weight: 700; }

/* DEMO CARD */
.demo-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden; backdrop-filter: blur(16px);
}
.demo-card__header { background: var(--brand); padding: 14px 18px; display: flex; align-items: center; gap: 10px; }
.demo-card__avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.demo-card__name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.demo-card__status { font-size: 0.72rem; color: rgba(255,255,255,0.8); }
.demo-card__msgs { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.demo-msg { display: flex; align-items: flex-end; gap: 7px; }
.demo-msg--user { flex-direction: row-reverse; }
.demo-bubble { max-width: 82%; padding: 9px 13px; border-radius: 14px; font-size: 0.85rem; line-height: 1.5; color: rgba(255,255,255,0.9); }
.demo-msg--bot .demo-bubble { background: rgba(255,255,255,0.1); border-bottom-left-radius: 4px; }
.demo-msg--user .demo-bubble { background: var(--brand); border-bottom-right-radius: 4px; }
.demo-typing { display: flex; gap: 4px; padding: 10px 14px; background: rgba(255,255,255,0.1); border-radius: 14px; border-bottom-left-radius: 4px; width: fit-content; }
.demo-typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); animation: bounce 1.2s infinite; }
.demo-typing span:nth-child(2) { animation-delay: .2s; }
.demo-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes bounce { 0%,60%,100%{transform:translateY(0);opacity:.5} 30%{transform:translateY(-5px);opacity:1} }

/* STATS */
.stats-bar { background: var(--brand); padding: 32px 0; }
.stats-bar__inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat__num { font-size: 2rem; font-weight: 900; color: #fff; display: block; }
.stat__label { font-size: 0.8rem; color: rgba(255,255,255,0.8); }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 56px; }
.step-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.step-card__num { width: 52px; height: 52px; border-radius: 50%; background: var(--brand-light); color: var(--brand); font-size: 1.3rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; border: 2px solid var(--brand); }
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }

/* USE CASES */
.usecases__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.usecase-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color 0.2s, box-shadow 0.2s; }
.usecase-card:hover { border-color: var(--brand); box-shadow: 0 4px 20px rgba(249,115,22,0.1); }
.usecase-card__icon { font-size: 2rem; margin-bottom: 12px; }
.usecase-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.usecase-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }

/* PRICING */
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; align-items: start; }
.pricing-card { background: var(--bg); border: 2px solid var(--border); border-radius: 16px; padding: 32px 28px; position: relative; }
.pricing-card--featured { border-color: var(--brand); box-shadow: 0 8px 40px rgba(249,115,22,0.2); transform: scale(1.03); }
.pricing-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-card__name { font-size: 0.95rem; font-weight: 700; color: var(--text-2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-card__price { font-size: 2.8rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 4px; }
.pricing-card__price span { font-size: 1rem; font-weight: 500; color: var(--text-2); }
.pricing-card__desc { font-size: 0.85rem; color: var(--text-2); margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 28px; }
.pricing-card__features li { font-size: 0.875rem; color: var(--text-2); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.pricing-card__features li::before { content: '✓'; color: var(--brand); font-weight: 800; flex-shrink: 0; }

/* FAQ */
.faq__list { margin-top: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-item__q { width: 100%; background: var(--bg); border: none; padding: 18px 24px; text-align: left; font-size: 0.95rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; transition: background 0.15s; }
.faq-item__q:hover { background: var(--bg-2); }
.faq-item__q::after { content: '+'; font-size: 1.4rem; color: var(--brand); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a { display: none; padding: 0 24px 18px; font-size: 0.875rem; color: var(--text-2); line-height: 1.7; background: var(--bg); }
.faq-item.open .faq-item__a { display: block; }

/* CONTACT FORM */
.contact-form { max-width: 620px; margin: 56px auto 0; background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 40px; box-shadow: var(--shadow); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form__group label { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.form__group input, .form__group select, .form__group textarea { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.9rem; font-family: inherit; color: var(--text); background: var(--bg); transition: border-color 0.15s; outline: none; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-color: var(--brand); }
.form__group textarea { resize: vertical; }
.form__note { font-size: 0.8rem; color: var(--text-2); text-align: center; margin-top: 12px; }

/* CTA */
.ki-cta { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); padding: 80px 0; text-align: center; }
.ki-cta h2 { font-size: 2.2rem; font-weight: 900; color: #fff; margin-bottom: 16px; }
.ki-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.ki-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: #0f172a; color: rgba(255,255,255,0.6); padding: 48px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__logo { font-size: 1.3rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.footer__logo span { color: var(--brand); }
.footer__desc { font-size: 0.875rem; line-height: 1.6; }
.footer__col h4 { color: #fff; font-size: 0.875rem; font-weight: 700; margin-bottom: 16px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; transition: color 0.15s; }
.footer__col ul li a:hover { color: var(--brand); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 0.8rem; text-align: center; }
.footer__bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer__bottom a:hover { color: var(--brand); }

/* LEGAL PAGES */
.legal-page { max-width: 720px; margin: 0 auto; padding: 100px 24px 80px; }
.legal-page__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand); margin-bottom: 12px; }
.legal-page__title { font-size: 2.2rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.legal-page__updated { font-size: 0.78rem; color: var(--text-2); margin-bottom: 40px; }
.legal-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.legal-section p { font-size: 0.9rem; color: var(--text-2); margin-bottom: 10px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { font-size: 0.9rem; color: var(--text-2); padding-left: 20px; margin-top: 8px; }
.legal-section ul li { margin-bottom: 6px; }
.highlight-box { background: #fff7ed; border-left: 3px solid var(--brand); padding: 12px 16px; border-radius: 0 8px 8px 0; font-size: 0.85rem; color: #92400e; margin: 12px 0; }
[data-theme="dark"] .highlight-box { background: rgba(249,115,22,0.1); color: #fdba74; }

/* MOBILE */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
  .usecases__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2,1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
}
@media (max-width: 600px) {
  .usecases__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer__inner { grid-template-columns: 1fr; }
}
