:root {
  --brand: #e0533d;
  --brand-dark: #c1352a;
  --ink: #1f2937;
  --muted: #555;
  --bg: #f6f7f8;
  --line: #e6e6e6;
  --max: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 10;
  background: #fff; border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: var(--max); margin: 0 auto; gap: 16px;
}
.logo img { height: 40px; width: auto; }
.header-cta {
  display: flex; align-items: center; gap: 12px;
}
.phone-link {
  font-weight: 700; text-decoration: none; color: var(--ink);
  white-space: nowrap;
}
.phone-link::before { content: "📞 "; }
.btn {
  display: inline-block; background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 6px; text-decoration: none;
  font-weight: 600; border: 0; cursor: pointer; font-size: 16px;
}
.btn:hover { background: #000; }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dark); }

/* Hero */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1; margin: 0 0 16px; letter-spacing: -0.02em;
}
.hero p.lede {
  font-size: 20px; color: var(--muted); max-width: 640px; margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-bullets {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 36px;
}
.hero-bullets div {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 16px;
}
.hero-bullets strong { display: block; margin-bottom: 4px; }

/* Sections */
section { padding: 64px 0; border-bottom: 1px solid var(--line); }
section h2 {
  font-size: clamp(24px, 3vw, 34px); margin: 0 0 16px; letter-spacing: -0.01em;
}
section h3 { font-size: 20px; margin: 24px 0 8px; }
section p { color: var(--muted); max-width: 760px; }

.services {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 28px;
}
.service-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px;
  padding: 24px;
}
.service-card h3 { margin-top: 0; }

.process {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 28px; counter-reset: step;
}
.process div {
  border-left: 4px solid var(--brand); padding: 4px 0 4px 16px;
}
.process div::before {
  counter-increment: step;
  content: "Steg " counter(step);
  display: block; font-size: 14px; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.process h3 { margin: 4px 0 6px; font-size: 18px; }

.faq details {
  border: 1px solid var(--line); border-radius: 8px; padding: 16px 20px;
  margin-bottom: 12px; background: #fff;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 17px; list-style: none;
}
.faq summary::after { content: "+"; float: right; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 12px 0 0; }

/* Contact */
#kontakt {
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}
.contact-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 32px; margin-top: 32px;
  align-items: stretch;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 20px; } }

.contact-info {
  position: relative;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff; padding: 36px 32px; border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.contact-info::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--brand);
}
.contact-info::after {
  content: ""; position: absolute; right: -60px; bottom: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,83,61,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-info h3 {
  color: #fff; margin: 0 0 24px;
  font-size: 22px; letter-spacing: -0.01em;
}
.contact-info .ci-row {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
}
.contact-info .ci-icon {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 8px;
  background: rgba(224,83,61,0.16); color: var(--brand);
  display: grid; place-items: center;
}
.contact-info .ci-icon svg { width: 20px; height: 20px; }
.contact-info .ci-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #999; margin: 0 0 2px; font-weight: 600;
}
.contact-info .ci-value a {
  color: #fff; font-size: 18px; font-weight: 600; text-decoration: none;
  border-bottom: 1px solid transparent; transition: border-color 0.15s;
}
.contact-info .ci-value a:hover { border-bottom-color: var(--brand); }
.contact-info .ci-note {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px; color: #aaa; line-height: 1.55;
}

#contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
#contact-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 520px) { #contact-form .form-row { grid-template-columns: 1fr; } }
form .field { margin-bottom: 16px; }
form .field:last-of-type { margin-bottom: 20px; }
form label {
  display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px;
  color: var(--ink); letter-spacing: 0.01em;
}
form input, form textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 8px;
  font: inherit; font-size: 15px; background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
form input:focus, form textarea:focus {
  outline: none; border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255,210,0,0.25);
}
form textarea { min-height: 130px; resize: vertical; }
form .btn { width: 100%; padding: 14px 20px; font-size: 16px; }
form .form-status { margin-top: 14px; font-size: 14px; min-height: 1em; }
form .form-status.ok { color: #1a7f3c; }
form .form-status.err { color: #b00020; }

/* Nav */
.nav-desktop { flex: 1; display: flex; justify-content: center; }
.nav-desktop > ul {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.nav-desktop .nav-group { position: relative; }
.nav-desktop .nav-group > span {
  cursor: pointer; padding: 10px 12px; font-weight: 600; font-size: 15px;
  display: inline-block; border-radius: 6px;
}
.nav-desktop .nav-group:hover > span { background: var(--bg); }
.nav-desktop .nav-group ul {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px; margin: 0; list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: none; z-index: 20;
}
.nav-desktop .nav-group:hover ul { display: block; }
.nav-desktop .nav-group ul a {
  display: block; padding: 8px 12px; border-radius: 4px;
  text-decoration: none; font-size: 14px;
}
.nav-desktop .nav-group ul a:hover { background: var(--bg); }
.nav-toggle {
  display: none; background: none; border: 0; font-size: 24px; cursor: pointer;
}
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  body.nav-open .nav-desktop {
    display: block; position: fixed; inset: 64px 0 0 0; background: #fff;
    z-index: 50; padding: 20px; overflow-y: auto;
  }
  body.nav-open .nav-desktop > ul { flex-direction: column; gap: 0; }
  body.nav-open .nav-desktop .nav-group ul {
    position: static; display: block; box-shadow: none; border: 0; padding-left: 16px;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--bg); border-bottom: 1px solid var(--line);
  padding: 10px 0; font-size: 14px; color: var(--muted);
}
.breadcrumbs a { color: var(--muted); }

/* Sub-page hero (smaller than homepage hero) */
.hero-sub { padding: 40px 0 32px; }
.hero-sub h1 { font-size: clamp(28px, 4vw, 40px); }

/* Price/comparison table */
.price-table {
  width: 100%; border-collapse: collapse; margin-top: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line);
}
.price-table th { background: var(--bg); font-weight: 700; }
.price-table tr:last-child td { border-bottom: 0; }
.price-note { font-size: 14px; color: var(--muted); margin-top: 12px; }

/* CTA section */
.cta-section {
  background: var(--ink); color: #fff; text-align: center;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: #ddd; max-width: 640px; margin: 0 auto 20px; }

/* Footer */
.footer {
  padding: 48px 0 32px; color: var(--muted); font-size: 14px;
  border-top: 1px solid var(--line); background: var(--bg);
}
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--ink); }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px; margin-bottom: 28px;
}
.footer-grid h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink); margin: 0 0 12px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-meta {
  text-align: center; padding-top: 24px; border-top: 1px solid var(--line);
  margin: 0;
}
