/* daikin-wartung.at – Haupt-CSS (Homepage + SEO-Pages teilen sich diese Datei) */
:root {
  --color-bg: #ffffff;
  --color-fg: #0e1a2b;
  --color-muted: #5b6779;
  --color-line: #e3e8ef;
  --color-soft: #f3f6fb;
  --color-brand: #0066b3;
  --color-brand-dark: #004f8a;
  --color-accent: #f59e0b;
  --color-ok: #047857;
  --color-star: #f5b400;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(14, 26, 43, 0.08);
  --shadow-lg: 0 20px 50px rgba(14, 26, 43, 0.14);
  --container: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; color: var(--color-fg); }
h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ===== Top bar ===== */
.topbar { background: var(--color-fg); color: #fff; font-size: .9rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; flex-wrap: wrap; gap: 10px; }
.topbar a { color: #fff; }
.topbar .badge { background: rgba(255,255,255,.12); padding: 3px 10px; border-radius: 99px; font-weight: 600; }

/* ===== Header ===== */
.header { border-bottom: 1px solid var(--color-line); background: #fff; position: sticky; top: 0; z-index: 50; }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; gap: 20px; }
.logo { font-weight: 800; font-size: 1.25rem; color: var(--color-fg); letter-spacing: -.5px; }
.logo span { color: var(--color-brand); }
.header-nav { display: flex; gap: 24px; align-items: center; font-size: .95rem; }
.header-nav a { color: var(--color-fg); font-weight: 500; }
.header-cta { background: var(--color-brand); color: #fff !important; padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 600; }
.header-cta:hover { background: var(--color-brand-dark); text-decoration: none; }
@media (max-width: 760px) { .header-nav a:not(.header-cta) { display: none; } }

/* ===== Hero ===== */
.hero { background: linear-gradient(180deg, #f3f6fb 0%, #ffffff 100%); padding: 50px 0 30px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 24px; } }
.hero-eyebrow { display: inline-block; background: var(--color-brand); color: #fff; font-size: .8rem; font-weight: 700; padding: 4px 12px; border-radius: 99px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .5px; }
.hero h1 { margin-bottom: 14px; }
.hero h1 .brand { color: var(--color-brand); }
.hero-lead { font-size: 1.15rem; color: var(--color-muted); margin-bottom: 22px; max-width: 540px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: all .15s; }
.btn-primary { background: var(--color-brand); color: #fff !important; }
.btn-primary:hover { background: var(--color-brand-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: #fff; color: var(--color-fg) !important; border: 2px solid var(--color-line); }
.btn-secondary:hover { border-color: var(--color-brand); text-decoration: none; }
.btn-call { background: var(--color-ok); color: #fff !important; }
.btn-call:hover { background: #035e44; text-decoration: none; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; font-size: .9rem; color: var(--color-muted); }
.hero-trust .stars { color: var(--color-star); font-size: 1.1rem; letter-spacing: 1px; }
.hero-image-shell { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-shell img { aspect-ratio: 4/3; object-fit: cover; }

/* ===== Trust bar ===== */
.trustbar { background: #fff; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); padding: 22px 0; }
.trustbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 720px) { .trustbar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.trustbar-item .num { font-size: 1.6rem; font-weight: 800; color: var(--color-brand); display: block; }
.trustbar-item .label { font-size: .9rem; color: var(--color-muted); }

/* ===== Section ===== */
.section { padding: 60px 0; }
.section-soft { background: var(--color-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head .eyebrow { color: var(--color-brand); font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: 1px; margin-bottom: 8px; }
.section-head p { color: var(--color-muted); font-size: 1.05rem; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 24px; transition: all .2s; }
.service-card:hover { border-color: var(--color-brand); transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card .icon { width: 48px; height: 48px; background: rgba(0,102,179,.1); color: var(--color-brand); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--color-muted); margin: 0; font-size: .95rem; }
.service-card ul { margin: 12px 0 0; padding-left: 18px; color: var(--color-muted); font-size: .9rem; }
.service-card li { margin-bottom: 4px; }

/* ===== Steps ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: #fff; border-radius: var(--radius); padding: 24px; position: relative; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.step-card .step-num { position: absolute; top: -14px; left: 24px; width: 32px; height: 32px; background: var(--color-brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .95rem; }
.step-card h3 { margin-top: 8px; margin-bottom: 6px; font-size: 1.05rem; }
.step-card p { color: var(--color-muted); margin: 0; font-size: .9rem; }

/* ===== Pricing ===== */
.pricing-table { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pricing-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; padding: 18px 24px; border-bottom: 1px solid var(--color-line); align-items: center; gap: 12px; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row.head { background: var(--color-soft); font-weight: 700; font-size: .9rem; text-transform: uppercase; color: var(--color-muted); letter-spacing: .5px; }
.pricing-row .price { font-weight: 700; color: var(--color-brand); font-size: 1.1rem; }
.pricing-row .note { font-size: .85rem; color: var(--color-muted); }
@media (max-width: 720px) {
  .pricing-row { grid-template-columns: 1fr 1fr; }
  .pricing-row .note { grid-column: 1 / -1; }
}
.pricing-note { text-align: center; color: var(--color-muted); font-size: .9rem; margin-top: 16px; }

/* ===== Lead Form ===== */
.form-section { background: linear-gradient(180deg, #f3f6fb 0%, #e8eef7 100%); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; } }
.form-info h2 { margin-bottom: 12px; }
.form-info ul { padding-left: 0; list-style: none; }
.form-info li { padding: 10px 0; padding-left: 30px; position: relative; color: var(--color-fg); }
.form-info li::before { content: "✓"; position: absolute; left: 0; top: 10px; width: 20px; height: 20px; background: var(--color-ok); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700; }
.lead-form { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); }
.lead-form h3 { margin-bottom: 18px; font-size: 1.3rem; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 4px; color: var(--color-fg); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--color-line); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; transition: border-color .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--color-brand); }
.form-field.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--color-muted); }
.form-field.consent input[type=checkbox] { width: auto; margin-top: 3px; }
.form-honey { position: absolute; left: -10000px; opacity: 0; }
.form-submit { width: 100%; padding: 16px; font-size: 1.05rem; }
.form-success, .form-error { padding: 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: .95rem; }
.form-success { background: #d1fae5; color: #064e3b; border: 1px solid #6ee7b7; }
.form-error { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { padding: 18px 24px; cursor: pointer; font-weight: 600; color: var(--color-fg); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--color-brand); font-weight: 400; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer { padding: 0 24px 18px; color: var(--color-muted); font-size: .95rem; }

/* ===== Models grid ===== */
.models-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .models-grid { grid-template-columns: 1fr; } }
.model-card { background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 22px; display: flex; gap: 16px; align-items: flex-start; }
.model-card .icon { font-size: 1.8rem; flex-shrink: 0; }
.model-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.model-card p { color: var(--color-muted); margin: 0; font-size: .9rem; }

/* ===== Disclaimer block ===== */
.disclaimer-box { background: #fef3c7; border: 1px solid #fde68a; border-radius: var(--radius-sm); padding: 18px 22px; margin: 30px 0; font-size: .92rem; color: #78350f; line-height: 1.55; }
.disclaimer-box strong { color: #78350f; }

/* ===== Footer ===== */
.footer { background: #0e1a2b; color: #c8d3e1; padding: 50px 0 20px; font-size: .92rem; }
.footer a { color: #c8d3e1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 4px 0; }
.footer-bottom { border-top: 1px solid #1f2c40; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-disclaimer { background: #1a2840; padding: 18px 22px; border-radius: var(--radius-sm); margin-bottom: 30px; font-size: .85rem; color: #a3b3c7; line-height: 1.6; }

/* ===== Privacy banner (cookie-consent.js styling) ===== */
.privacy-consent { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 480px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 22px; z-index: 100; font-size: .9rem; }
.privacy-consent__title { font-size: 1.05rem; margin-bottom: 8px; }
.privacy-consent button { padding: 10px 18px; border-radius: var(--radius-sm); border: none; font-weight: 600; cursor: pointer; font-size: .9rem; margin-right: 8px; margin-top: 12px; }
.privacy-consent button.accept { background: var(--color-brand); color: #fff; }
.privacy-consent button.reject { background: #f3f6fb; color: var(--color-fg); }
