/* Bewertungsseite im Markenauftritt von breusspartner.at
   Brandkit laut CSS der Hauptseite (Stand 16.09.2026):
   Hauptfarbe #0b3047, Hover #04121b, Topleiste #EBE2B7,
   Überschriften Raleway 600 (Hero 800), Text Verdana, Rahmen #ddd, Radius 2px */

:root {
  --navy: #0b3047;
  --navy-dark: #04121b;
  --champagner: #EBE2B7;
  --flaeche-hell: #F8F9FA;   /* #0b3047 mit 3 % */
  --flaeche: #E7EAED;        /* #0b3047 mit 10 % */
  --text: #555555;
  --text-dunkel: #333333;
  --rahmen: #dddddd;
  --stern: #F5B400;
  --radius: 2px;
  --wrap: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dunkel);
  margin: 0;
}

a { color: var(--navy); }
a:hover { color: var(--navy-dark); }

img { max-width: 100%; display: block; }

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

.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

/* ---------- Topleiste und Kopf ---------- */

.topleiste { background: var(--navy); color: var(--champagner); font-size: 12px; letter-spacing: .5px; text-transform: uppercase; }
.topleiste .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 10px; padding-bottom: 10px; }
.topleiste a { color: var(--champagner); text-decoration: none; font-weight: 700; }
.topleiste a:hover { color: #fff; }

header.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e5e5;
}
.kopf .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 14px; padding-bottom: 14px; }
.logo img { height: 52px; width: auto; }
.kopf-rechts { display: flex; align-items: center; gap: 26px; }
.kopf-link { font-weight: 700; font-size: 14px; text-decoration: none; text-transform: uppercase; color: var(--navy); }
.kopf-telefon {
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--navy); border-radius: var(--radius);
  padding: 9px 16px; font-weight: 700; font-size: 14px; text-decoration: none; color: var(--navy);
  transition: background .2s, color .2s;
}
.kopf-telefon:hover, .kopf-telefon:focus-visible { background: var(--navy); color: #fff; }
.kopf-telefon svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Hero mit Formular ---------- */

.hero {
  position: relative;
  background: #8a939b url('assets/luftbild-rheintal.jpg') center 40% / cover no-repeat;
  padding: 80px 0 190px;
  text-align: center;
}
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .15); }
.hero .wrap { position: relative; }
.hero .eyebrow { color: #000; font-size: 15px; letter-spacing: 1.5px; }
.hero h1 {
  font-weight: 800;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
  color: #000;
  text-transform: uppercase;
  margin-top: 14px;
}

.formular-bereich { position: relative; margin-top: -150px; padding-bottom: 20px; }

.form-card {
  scroll-margin-top: 110px;
  background: #fff;
  border: 1px solid var(--rahmen);
  border-radius: var(--radius);
  box-shadow: 1px 1px 8px -1px rgba(160, 160, 160, .45);
  padding: 32px 38px 30px;
}
.form-kopf { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 20px; }
.form-kopf h2 { font-size: 23px; color: var(--navy); text-transform: uppercase; }
.form-kopf .lead { margin: 8px 0 0; font-size: 14px; max-width: 64ch; }
.form-kopf .sub { font-size: 13px; text-align: right; max-width: 27ch; margin: 0; }

.felder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 22px; }
.field label { display: block; font-size: 12px; color: var(--text-dunkel); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; height: 40px;
  border: 1px solid #cccccc; border-radius: var(--radius);
  padding: 0 12px; font: inherit; font-size: 16px; color: var(--text-dunkel); background: #fff;
  -webkit-appearance: none; appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11, 48, 71, .15); }

.form-fuss { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 20px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; line-height: 1.5; max-width: 60ch; }
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--navy); flex: none; }

.btn-primary {
  display: inline-block;
  background: var(--navy); color: #fff;
  border: 1px solid var(--navy); border-radius: var(--radius);
  padding: 15px 26px;
  font: inherit; font-size: 15px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; }
.btn-primary:disabled { opacity: .7; cursor: wait; }

.form-note { font-size: 12px; margin: 12px 0 0; text-align: right; }

.success-msg { display: none; text-align: center; padding: 30px 10px; }
.success-msg.show { display: block; }
.success-msg h3 { font-size: 26px; color: var(--navy); margin-bottom: 10px; }
.success-msg a { font-weight: 700; }

.kennzahlen { display: flex; justify-content: space-around; gap: 20px; padding: 36px 0 10px; text-align: center; }
.stat b { display: block; font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 26px; color: var(--navy); }
.stat span { display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Abschnitte ---------- */

section.abschnitt { padding: 80px 0; }
.abschnitt-kopf { text-align: center; margin-bottom: 40px; }
.abschnitt-kopf h2 { font-size: clamp(24px, 2.8vw, 34px); text-transform: uppercase; margin-top: 8px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { background: var(--flaeche-hell); box-shadow: 1px 1px 8px -1px rgba(219, 219, 219, .9); padding: 30px 28px; }
.step .num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--navy); color: #fff; font-family: 'Raleway', sans-serif; font-weight: 600; }
.step h3, .why-item h3 { font-size: 19px; color: var(--navy); margin: 16px 0 10px; }
.step p, .why-item p { margin: 0; font-size: 14px; line-height: 1.65; }

.why-section { background: var(--flaeche); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-item { background: #fff; border-left: 4px solid var(--navy); padding: 26px 30px; }
.why-item h3 { margin-top: 0; }

/* ---------- Bewertungen ---------- */

.testi { background: var(--flaeche-hell); border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; padding: 44px 0; }
.testi-inner { display: flex; align-items: center; justify-content: center; gap: 24px 56px; flex-wrap: wrap; }
.score { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.score:hover .anzahl { text-decoration: underline; }
.score .zahl { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 46px; line-height: 1; color: var(--navy); }
.score .sterne { display: block; color: var(--stern); font-size: 22px; letter-spacing: 2px; line-height: 1.2; }
.score .anzahl { display: block; font-size: 14px; color: var(--text); }
.trenner { width: 1px; height: 64px; background: #D5D8DE; }
.zitat { margin: 0; max-width: 560px; text-align: left; }
.zitat p { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 20px; line-height: 1.45; color: var(--navy); margin: 0; }
.zitat .quelle { display: block; font-size: 13px; color: #777; margin-top: 8px; }

/* ---------- Abschluss und Fuß ---------- */

.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 70px 0; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 2.8vw, 34px); text-transform: uppercase; }
.cta-band p { color: var(--champagner); font-size: 16px; margin: 12px 0 26px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-light, .btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border-radius: var(--radius); padding: 15px 26px;
  font-weight: 700; font-size: 15px; letter-spacing: .5px; text-transform: uppercase; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-light { background: #fff; color: var(--navy); border: 1px solid #fff; }
.btn-light:hover, .btn-light:focus-visible { background: var(--champagner); border-color: var(--champagner); color: var(--navy); }
.btn-outline { color: #fff; border: 1px solid #fff; }
.btn-outline:hover, .btn-outline:focus-visible { background: #fff; color: var(--navy); }
.btn-outline svg { width: 17px; height: 17px; fill: currentColor; }

footer.fuss { background: #000; color: #BFC2C8; font-size: 13px; padding: 52px 0 30px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.logo-chip { display: inline-block; background: #fff; padding: 10px 14px; border-radius: var(--radius); }
.logo-chip img { height: 40px; width: auto; }
.fuss p { margin: 14px 0 0; max-width: 34ch; line-height: 1.7; }
.fuss-titel { color: #fff; font-family: 'Raleway', sans-serif; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.fuss a { color: #BFC2C8; }
.fuss a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 36px; padding-top: 20px; border-top: 1px solid #262626; color: #8D919A; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: #fff; font-weight: 700; text-decoration: none; text-transform: uppercase; font-size: 12px; }
.footer-links a:hover { text-decoration: underline; }

/* ---------- Rechtliche Seiten ---------- */

.rechtliches { padding: 60px 0 80px; }
.rechtliches .wrap { max-width: 860px; }
.rechtliches h1 { font-size: clamp(28px, 3.4vw, 40px); color: var(--navy); text-transform: uppercase; margin: 8px 0 24px; }
.rechtliches h2 { font-size: 21px; color: var(--navy); margin: 36px 0 12px; }
.rechtliches h3 { font-size: 16px; color: var(--text-dunkel); margin: 22px 0 8px; }
.rechtliches p { margin: 0 0 10px; }
.rechtliches ul { padding-left: 20px; margin: 0 0 12px; }
.rechtliches .updated { font-size: 13px; margin-bottom: 20px; }
.rechtliches .card { background: var(--flaeche-hell); border: 1px solid var(--rahmen); border-radius: var(--radius); padding: 18px 22px; margin: 10px 0 14px; }
.rechtliches .card p { margin: 0 0 4px; }
.rechtliches table { width: 100%; border-collapse: collapse; margin: 10px 0 16px; font-size: 14px; }
.rechtliches th, .rechtliches td { border: 1px solid var(--rahmen); padding: 10px 12px; text-align: left; vertical-align: top; }
.rechtliches th { background: var(--flaeche); color: var(--text-dunkel); }

/* iPhone: Eingabefelder mit mindestens 16 px, sonst zoomt Safari beim Antippen.
   appearance:none vereinheitlicht die Darstellung, der Pfeil im Auswahlfeld kommt per Hintergrundgrafik. */
.field select {
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23333' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.consent input { -webkit-appearance: checkbox; appearance: auto; }

/* ---------- Umbrüche ---------- */

@media (max-width: 900px) {
  .form-kopf { flex-direction: column; align-items: flex-start; gap: 8px; }
  .form-kopf .sub { text-align: left; max-width: none; }
  .felder { grid-template-columns: repeat(2, 1fr); }
  .form-fuss { flex-direction: column; align-items: stretch; }
  .form-fuss .btn-primary { width: 100%; }
  .form-note { text-align: center; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .trenner { display: none; }
  .zitat { text-align: center; }
  .topleiste .mitte { display: none; }
}

@media (max-width: 700px) {
  .kopf-link { display: none; }
  .logo img { height: 40px; }
  .kopf-telefon { padding: 8px 12px; font-size: 13px; }
  .hero { padding: 56px 0 150px; }
  .formular-bereich { margin-top: -110px; }
  .form-card { padding: 24px 20px; }
  .kennzahlen { flex-direction: column; gap: 18px; }
  section.abschnitt { padding: 60px 0; }
}

@media (max-width: 640px) {
  .felder { grid-template-columns: 1fr; }
  .topleiste .wrap { justify-content: center; }
  .topleiste .rechts { display: none; }
  .zitat p { font-size: 17px; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Korrekturen Handy (Test 16.09.2026) ---------- */
@media (max-width: 900px) {
  .btn-primary { white-space: normal; line-height: 1.35; text-align: center; }
}
@media (max-width: 640px) {
  .topleiste { font-size: 11px; letter-spacing: 0; }
  .topleiste .label { display: none; }
}
@media (max-width: 480px) {
  .kopf-telefon { font-size: 0; gap: 0; padding: 10px; }
  .kopf-telefon svg { width: 20px; height: 20px; }
  .logo img { height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
