@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
  --primary: #FF5A1F;
  --primary-dark: #d94812;
  --secondary: #FFD166;
  --bg: #fffaf5;
  --surface: #ffffff;
  --text: #1f1a17;
  --muted: #6c615b;
  --border: #f1d9c9;
  --radius: 16px;
  --shadow: 0 10px 25px rgba(31, 26, 23, 0.08);
  --green-win: #2fbf4a;
  --green-dark: #1d8f34;
  --orange-win: #ff7a1a;
  --orange-dark: #e15e00;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.container { width: min(1120px, 92%); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; gap: 16px; }
.brand { font-weight: 800; color: var(--primary); text-decoration: none; }
nav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
nav a { color: var(--text); text-decoration: none; font-weight: 600; }
nav a.active { color: var(--primary); }
.nav-cta { background: var(--primary); color: white; padding: 10px 14px; border-radius: 999px; }

.hero { padding: 72px 0 36px; }
.hero-grid { display: grid; gap: 24px; grid-template-columns: 1.2fr .8fr; align-items: start; }
.eyebrow { display: inline-block; background: var(--secondary); padding: 6px 10px; border-radius: 999px; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.15; margin: 14px 0; }
.lead { font-size: 1.08rem; color: var(--muted); }
.hero-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.hero-card ul { padding-left: 18px; }

.btn {
  display: inline-block; text-decoration: none; border: none; cursor: pointer;
  padding: 12px 18px; border-radius: 12px; font-weight: 700; transition: .25s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 10px; }
.inline-link { color: var(--primary); font-weight: 700; }

.section { padding: 56px 0; }
.alt { background: #fff2e3; }
.section-intro { color: var(--muted); }

.vs-arena {
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}
.vs-col-legend {
  text-align: center;
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 999px;
}
.left-legend {
  color: #fff;
  background: linear-gradient(90deg, var(--green-dark), var(--green-win));
}
.right-legend {
  color: #fff;
  background: linear-gradient(90deg, var(--orange-win), var(--orange-dark));
}
.vs-head {
  background: #fff7ef;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.otomatic-head h3 { color: var(--green-dark); margin: 0 0 4px; }
.bolt-head h3 { color: var(--orange-dark); margin: 0 0 4px; }
.vs-head p { margin: 0; color: var(--muted); font-size: .95rem; }
.vs-center-badge {
  margin: 0 auto;
  width: 70px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(90deg, var(--green-win), var(--orange-win));
  color: #fff;
}
.vs-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 10px;
}
.score-left,
.score-right {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 8px 14px;
  color: #fff;
  font-weight: 700;
}
.score-left {
  justify-content: flex-start;
  background: linear-gradient(90deg, var(--green-dark), var(--green-win));
  border-radius: 10px 0 0 10px;
  clip-path: polygon(0 50%, 9% 0, 100% 0, 100% 100%, 9% 100%);
}
.score-right {
  justify-content: flex-end;
  background: linear-gradient(90deg, var(--orange-win), var(--orange-dark));
  border-radius: 0 10px 10px 0;
  clip-path: polygon(0 0, 91% 0, 100% 50%, 91% 100%, 0 100%);
}
.score-left span,
.score-right span {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  padding: 5px 10px;
  border-radius: 999px;
}
.criterion {
  text-align: center;
  font-weight: 700;
  background: #fffaf5;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}

.table-wrap { overflow-x: auto; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 14px; border-bottom: 1px solid #f5e6db; text-align: left; vertical-align: top; }
th { background: #fff7ef; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }

.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: start; }
.calc-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.calc-box input { width: 100%; margin: 6px 0 12px; padding: 11px; border: 1px solid #e8d4c5; border-radius: 10px; }
.result { font-weight: 700; color: var(--primary-dark); }
.sticky-card { position: sticky; top: 92px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.full { width: 100%; text-align: center; }

.faq { display: grid; gap: 14px; }
.faq article { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px; }
.center-cta { margin-top: 22px; text-align: center; }

.legal h2 { margin-top: 28px; }
.legal-box { background: #fff; border: 1px solid var(--border); padding: 14px; border-radius: 12px; overflow-x: auto; }

.site-footer { background: #2a1911; color: #ffe7d2; padding-top: 34px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.site-footer a { color: #ffd9a6; text-decoration: none; }
.footer-brand { font-weight: 800; font-size: 1.1rem; color: #fff; }
.subfooter { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 20px; padding: 14px 0; font-size: .92rem; }

.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero-grid, .split, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .vs-row { grid-template-columns: 1fr; }
  .score-left, .score-right, .criterion { clip-path: none; border-radius: 10px; justify-content: center; }
  .vs-col-legend { font-size: .92rem; }
  nav { justify-content: flex-end; }
}