/* Baurapport — landing. One stylesheet, no build step, no dependencies. */

:root {
  --navy:        #16304F;
  --navy-deep:   #0F2237;
  --amber:       #E39B2E;
  --amber-soft:  #F0AE4A;
  --cream:       #F7F3EB;
  --paper:       #FFFFFF;
  --ink:         #17212E;
  --ink-soft:    #5C6675;
  --line:        #E4DCCF;
  --green:       #2E7D62;

  --radius:   18px;
  --radius-s: 12px;
  --shadow:   0 1px 2px rgba(23,33,46,.05), 0 12px 32px -12px rgba(23,33,46,.16);
  --shadow-l: 0 24px 70px -28px rgba(15,34,55,.45);
  --wrap:     1140px;
  --ease:     cubic-bezier(.22,.7,.3,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -.021em; margin: 0 0 .4em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.65rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 750; }
h3 { font-size: 1.16rem; font-weight: 650; }
p  { margin: 0 0 1em; }
a  { color: inherit; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px;
}
.skip:focus { left: 16px; }

/* ---------------------------------------------------------------- buttons */

.btn {
  --btn-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  font: inherit; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  --btn-bg: linear-gradient(180deg, var(--amber-soft), var(--amber));
  color: #26170A;
  box-shadow: 0 10px 24px -12px rgba(227,155,46,.9);
}
.btn-primary:hover { box-shadow: 0 16px 30px -12px rgba(227,155,46,.95); }

.btn-ghost {
  border-color: rgba(23,33,46,.16);
  background: rgba(255,255,255,.7);
  color: var(--ink);
}
.btn-ghost:hover { border-color: rgba(23,33,46,.34); background: #fff; }

.btn-sm  { padding: 9px 16px; font-size: .93rem; }
.btn-lg  { padding: 16px 28px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

/* ----------------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,235,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 750; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: var(--amber-soft);
}
.brand-name { font-size: 1.06rem; letter-spacing: -.02em; }

.nav { display: flex; gap: 26px; margin-inline: auto; }
.nav a {
  text-decoration: none; font-weight: 550; font-size: .97rem; color: var(--ink-soft);
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--amber); border-radius: 2px; transition: right .25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang { display: inline-flex; background: rgba(23,33,46,.06); border-radius: 999px; padding: 3px; }
.lang button {
  border: 0; background: transparent; font: inherit; font-size: .8rem; font-weight: 650;
  letter-spacing: .04em; color: var(--ink-soft);
  padding: 6px 10px; border-radius: 999px; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.lang button.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow); }

.burger { display: none; width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; }
.burger span { display: block; height: 2px; width: 20px; margin: 5px auto; background: var(--ink); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s; }

/* ------------------------------------------------------------------- hero */

.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 5vw, 64px); align-items: center; }

.eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 14px;
}
.lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 54ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }

.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; padding: 0; margin: 0; font-size: .93rem; color: var(--ink-soft); }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(46,125,98,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7D62' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* app mock-up, drawn instead of screenshotted */
.hero-visual { position: relative; }

.mock-desktop {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-l); overflow: hidden;
  transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
}
.mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: #F1ECE2; border-bottom: 1px solid var(--line);
}
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: #D9D0C0; }
.mock-bar span { margin-left: 10px; font-size: .74rem; color: var(--ink-soft); }
.mock-body { padding: 18px; }
.mock-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-head strong { display: block; font-size: .98rem; }
.mock-head small { color: var(--ink-soft); font-size: .8rem; }

.chip { font-size: .78rem; font-weight: 650; padding: 5px 11px; border-radius: 999px; }
.chip-amber { background: rgba(227,155,46,.16); color: #8A5A11; }
.chip-green { background: rgba(46,125,98,.15); color: var(--green); }

.mock-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.mock-table th {
  text-align: left; font-size: .68rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 650; padding-bottom: 8px;
}
.mock-table td { padding: 9px 0; border-top: 1px solid var(--line); }
.mock-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.mock-table tr.ghost { opacity: .45; }

.mock-photos { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.mock-photos i {
  width: 46px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, #E7DFD1, #D5CAB7);
}
.mock-photos span { font-size: .8rem; color: var(--ink-soft); }

.mock-phone {
  position: absolute; right: -6px; bottom: -34px; width: 176px;
  background: var(--navy-deep); border-radius: 26px; padding: 9px;
  box-shadow: var(--shadow-l);
}
.mock-phone-screen {
  background: #182534; border-radius: 19px; padding: 18px 16px; color: #E8EDF4;
}
.mock-phone-screen strong { display: block; font-size: 1.9rem; margin: 12px 0 2px; letter-spacing: -.02em; }
.mock-phone-screen small { color: #93A1B3; font-size: .78rem; }
.mock-rows { margin-top: 16px; display: grid; gap: 7px; }
.mock-rows i { height: 8px; border-radius: 4px; background: rgba(255,255,255,.09); }
.mock-rows i:nth-child(2) { width: 78%; }
.mock-rows i:nth-child(3) { width: 55%; }

/* ------------------------------------------------------------------ strip */

.strip { background: var(--navy); color: #EAF0F7; padding: 28px 0; }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.strip-inner b { display: block; font-size: 1.75rem; color: var(--amber-soft); letter-spacing: -.02em; }
.strip-inner span { font-size: .87rem; color: #A9B8CB; }

/* --------------------------------------------------------------- sections */

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-alt { background: var(--paper); border-block: 1px solid var(--line); }

.section-head { max-width: 62ch; margin: 0 auto clamp(32px, 5vw, 54px); text-align: center; }
.section-lead { color: var(--ink-soft); font-size: 1.06rem; }

.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px 26px; position: relative; box-shadow: var(--shadow);
}
.step-no {
  position: absolute; top: -18px; left: 26px;
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: var(--amber-soft); font-weight: 700;
}
.step p { color: var(--ink-soft); margin: 0; font-size: .97rem; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card p { color: var(--ink-soft); margin: 0; font-size: .96rem; }
.ico {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(22,48,79,.07); color: var(--navy); margin-bottom: 14px;
}
.ico svg { width: 21px; height: 21px; }

/* -------------------------------------------------------------- platforms */

.platforms { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-radius: 14px;
  border: 1px dashed rgba(23,33,46,.25); color: var(--ink-soft);
  background: rgba(255,255,255,.6);
}
.store b { color: var(--ink); font-size: .95rem; }
.store small { font-size: .78rem; }

.platforms-art { display: grid; place-items: center; }
.pill-row { display: flex; gap: 14px; }
.pill-row i {
  width: 86px; height: 86px; border-radius: 26px; display: grid; place-items: center;
  font-size: 2rem; font-style: normal;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.pill-row i:nth-child(2) { animation-delay: .5s; }
.pill-row i:nth-child(3) { animation-delay: 1s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------------------------------------------------------------- pricing */

.toggle {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 22px;
  background: rgba(23,33,46,.06); border-radius: 999px; padding: 4px; position: relative;
}
.toggle button {
  border: 0; background: transparent; font: inherit; font-weight: 620; font-size: .92rem;
  color: var(--ink-soft); padding: 9px 18px; border-radius: 999px; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.toggle button.is-active { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.save {
  margin-left: 8px; font-size: .78rem; font-weight: 650; color: var(--green);
  background: rgba(46,125,98,.13); padding: 6px 12px; border-radius: 999px;
}

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; max-width: 900px; margin-inline: auto; }
.plan {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
}
.plan-pro {
  background: linear-gradient(170deg, var(--navy), var(--navy-deep));
  color: #EAF0F7; border-color: transparent; box-shadow: var(--shadow-l);
}
.plan-pro h3, .plan-pro .plan-price b { color: #fff; }
.plan-badge {
  position: absolute; top: -13px; right: 24px;
  background: var(--amber); color: #26170A; font-size: .76rem; font-weight: 700;
  padding: 5px 13px; border-radius: 999px;
}
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 2px; }
.plan-price b { font-size: 2.5rem; letter-spacing: -.03em; }
.plan-price span { font-size: .92rem; color: var(--ink-soft); }
.plan-pro .plan-price span, .plan-pro .plan-note { color: #A9B8CB; }
.plan-note { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; font-size: .96rem; }
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li::before {
  content: ""; flex: 0 0 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: rgba(46,125,98,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7D62' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.plan-pro li::before {
  background: rgba(240,174,74,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0AE4A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.plan .btn { margin-top: auto; }
.vat { text-align: center; font-size: .85rem; color: var(--ink-soft); margin-top: 26px; }

/* -------------------------------------------------------------------- faq */

.faq-wrap { max-width: 820px; }
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-s);
  padding: 4px 20px; transition: box-shadow .2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 30px 16px 0; font-weight: 620; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 2px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--ink-soft); border-bottom: 2px solid var(--ink-soft);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq p { color: var(--ink-soft); margin: 0 0 16px; font-size: .97rem; }

/* --------------------------------------------------------------- cta band */

.cta-band {
  background: linear-gradient(150deg, var(--navy), var(--navy-deep));
  color: #EAF0F7; padding: clamp(50px, 7vw, 84px) 0; text-align: center;
}
.cta-inner { max-width: 40ch; margin-inline: auto; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: #A9B8CB; margin-bottom: 26px; }

/* ----------------------------------------------------------------- footer */

.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 44px 0 34px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; align-items: start; }
.site-footer nav { display: grid; gap: 9px; }
.site-footer a { text-decoration: none; color: var(--ink-soft); font-size: .94rem; }
.site-footer a:hover { color: var(--ink); }
.footer-note { color: var(--ink-soft); font-size: .92rem; margin-top: 12px; max-width: 34ch; }
.footer-label { font-weight: 650; font-size: .9rem; margin-bottom: 6px; }
.footer-copy { color: var(--ink-soft); font-size: .85rem; margin-top: 14px; }

/* ------------------------------------------------------------ transitions */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pill-row i { animation: none; }
}

/* ------------------------------------------------------------ small print */

@media (max-width: 940px) {
  .hero-inner, .platforms { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 26px; }
  .mock-desktop { transform: none; }
  .mock-phone { position: static; width: 100%; max-width: 260px; margin: 18px auto 0; }
  .steps, .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav {
    position: fixed; inset: 72px 0 auto; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 20px 18px; margin: 0;
    transform: translateY(-120%); transition: transform .28s var(--ease);
  }
  .nav.is-open { transform: none; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .burger { display: block; }
  .header-actions .btn { display: none; }
  .steps, .grid, .plans, .strip-inner, .footer-inner { grid-template-columns: 1fr; }
  .strip-inner { gap: 14px; }
  .toggle { flex-wrap: wrap; justify-content: center; }
}
