/* =========================================================
   RP BUCHHALTUNG
   style.css
   ---------------------------------------------------------
   Farb- und Stylebasis:
   - Navy:      #071E30
   - RP Blau:   #3C82C8
   - Hellblau:  #5692CD
   - Off White: #ECEDED
   - Inter / system-ui
   ========================================================= */


/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */

:root {
  /* Brand */
  --brand-primary: #071E30;
  --brand-primary-soft: #1E344A;
  --brand-secondary: #3C82C8;
  --brand-secondary-hover: #2F6FAE;
  --brand-accent: #5692CD;
  --brand-soft: #A0B7CF;

  /* Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: #ECEDED;
  --bg-soft: #F5F6F7;
  --bg-dark: #071E30;
  --bg-dark-soft: #1E344A;

  /* Text */
  --text-primary: #071E30;
  --text-secondary: #575F67;
  --text-muted: #7A8188;
  --text-inverse: #FFFFFF;

  /* UI */
  --border-default: #D8DDE1;
  --border-dark: rgba(255, 255, 255, 0.16);

  /* Radius */
  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 32px;
  --radius-xl: 64px;

  /* Shadows */
  --shadow-card: 0 8px 30px rgba(7, 30, 48, 0.08);
  --shadow-card-hover: 0 16px 45px rgba(7, 30, 48, 0.12);
  --shadow-image: 0 24px 70px rgba(7, 30, 48, 0.14);

  /* Layout */
  --container-width: 1180px;
  --section-space: 104px;
  --section-space-mobile: 68px;

  /* Motion */
  --transition: 180ms ease;
}


/* =========================================================
   2. RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

::selection {
  background: var(--brand-secondary);
  color: #fff;
}


/* =========================================================
   3. ACCESSIBILITY
   ========================================================= */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(60, 130, 200, 0.38);
  outline-offset: 4px;
}


/* =========================================================
   4. GLOBAL LAYOUT
   ========================================================= */

.container {
  width: min(calc(100% - 40px), var(--container-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--soft {
  background: var(--bg-secondary);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading h2,
.regional__content h2,
.about__content h2,
.pricing__content h2,
.contact__content h2,
.final-cta h2 {
  margin-bottom: 22px;
}

.section-heading > p:last-child,
.regional__content > p,
.about__content > p,
.pricing__content > p,
.contact__content > p,
.final-cta__content > p {
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.75;
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.74);
}


/* =========================================================
   5. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3 {
  color: var(--text-primary);
  font-weight: 500;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.06;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

h1 span,
h2 span {
  color: var(--brand-secondary);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #7EB0DF;
}


/* =========================================================
   6. BUTTONS
   ========================================================= */

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--brand-secondary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(60, 130, 200, 0.22);
}

.button--primary:hover {
  background: var(--brand-secondary-hover);
  box-shadow: 0 10px 26px rgba(60, 130, 200, 0.28);
}

.button--secondary {
  border-color: var(--brand-secondary);
  background: transparent;
  color: var(--text-primary);
}

.button--secondary:hover {
  background: rgba(60, 130, 200, 0.07);
}

.button--secondary-light {
  color: #fff;
}


/* =========================================================
   7. HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(216, 221, 225, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 32px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-logo__mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-primary);
  color: var(--brand-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.site-logo__text {
  font-size: 1.1rem;
}

.site-logo__image {
  display: block;
  width: auto;
  height: 70px;
  max-width: none;
  object-fit: contain;
}

.site-logo__image--footer {
  height: 50px;
  max-width: 260px;
}


.main-navigation > ul {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-navigation a {
  color: var(--brand-primary);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color var(--transition);
}

.main-navigation a:hover {
  color: var(--brand-secondary);
}

.main-navigation .nav-cta {
  padding: 11px 16px;
  border-radius: var(--radius-small);
  background: var(--brand-secondary);
  color: #fff;
}

.main-navigation .nav-cta:hover {
  background: var(--brand-secondary-hover);
  color: #fff;
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: var(--bg-secondary);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  margin-block: 5px;
  border-radius: 2px;
  background: var(--brand-primary);
}


/* =========================================================
   8. HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 80px;
  background:
    radial-gradient(circle at 88% 14%, rgba(86, 146, 205, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(60, 130, 200, 0.10);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 68px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__lead {
  max-width: 680px;
  margin-top: 28px;
  color: var(--text-secondary);
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero .button-group {
  margin-top: 32px;
}

.hero__trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 26px;
}

.hero__trust-list li {
  color: var(--brand-primary-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero__trust-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--brand-secondary);
  font-weight: 600;
}

.hero__visual {
  position: relative;
}

.hero__portrait {
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px 34px 140px 34px;
  background:
    linear-gradient(135deg, rgba(7, 30, 48, 0.08), rgba(60, 130, 200, 0.12)),
    #dfe4e8;
  box-shadow: var(--shadow-image);
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: 40px;
  color: var(--brand-primary-soft);
  text-align: center;
  font-weight: 500;
}

.price-badge {
  position: absolute;
  left: -30px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  padding: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 12px 40px rgba(7, 30, 48, 0.22);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.price-badge span {
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.price-badge strong {
  display: block;
  margin: 3px 0;
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: -0.055em;
}


/* =========================================================
   9. BENEFITS / GENERIC CARDS
   ========================================================= */

.benefits {
  padding: 76px 0;
  background: var(--bg-primary);
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-card,
.service-card,
.audience-card {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-medium);
  background: #fff;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.feature-card:hover,
.service-card:hover,
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 130, 200, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.feature-card,
.service-card {
  padding: 28px;
}

.audience-card {
  padding: 30px 24px;
  text-align: center;
}

.feature-card h3,
.service-card h3,
.audience-card h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

.feature-card p,
.service-card p,
.audience-card p {
  color: var(--text-secondary);
  line-height: 1.68;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(60, 130, 200, 0.10);
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.audience-card .icon-box {
  margin-inline: auto;
}

.service-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
}

.service-card p {
  flex-grow: 1;
}

.service-card__meta {
  display: block;
  margin-top: 20px;
  color: var(--brand-secondary);
  font-size: 0.85rem;
  font-weight: 600;
}


/* =========================================================
   10. STATEMENT SECTION
   ========================================================= */

.statement-section {
  padding: 78px 0;
  background: var(--bg-dark);
  color: #fff;
}

.statement-section__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.statement-section h2 {
  color: #fff;
}

.statement-section h2 span {
  display: block;
  color: var(--brand-accent);
}

.statement-section__content > p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
  line-height: 1.75;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-list li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 500;
}


/* =========================================================
   11. REGIONAL SECTION
   ========================================================= */

.regional__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
  align-items: center;
}

.regional__content > p {
  margin-bottom: 28px;
}

.regional-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 44px;
  border-radius: var(--radius-large);
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow-image);
}

.regional-card::before,
.regional-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(86, 146, 205, 0.34);
}

.regional-card::before {
  top: -140px;
  right: -150px;
  width: 430px;
  height: 430px;
}

.regional-card::after {
  top: -40px;
  right: -65px;
  width: 270px;
  height: 270px;
}

.regional-card h3,
.regional-card p,
.location-list {
  position: relative;
  z-index: 1;
}

.regional-card h3 {
  max-width: 440px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.12;
}

.regional-card p {
  max-width: 540px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.location-list li {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 500;
}


/* =========================================================
   12. ABOUT
   ========================================================= */

.about__grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.76fr) minmax(0, 1.35fr) minmax(150px, 0.4fr);
  gap: 40px;
  align-items: center;
}

.about__visual {
  min-height: 450px;
}

.about__portrait {
  width: 100%;
  min-height: 450px;
  overflow: hidden;
  border-radius: 120px 28px 28px 28px;
  background:
    linear-gradient(135deg, rgba(7, 30, 48, 0.08), rgba(60, 130, 200, 0.10)),
    #dfe4e8;
  box-shadow: var(--shadow-image);
}

.about__portrait--portrait {
  align-self: start;
  min-height: 230px;
  aspect-ratio: 0.9;
  border: 5px solid var(--bg-secondary);
  border-radius: 26px 26px 72px 26px;
}

.about__portrait img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.about__portrait--portrait img {
  min-height: 100%;
  object-position: center top;
}

.about__content > p + p {
  margin-top: 14px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.check-list li {
  padding-top: 12px;
  border-top: 2px solid var(--brand-secondary);
  color: var(--brand-primary);
  font-size: 0.92rem;
  font-weight: 600;
}


/* =========================================================
   13. PROCESS
   ========================================================= */

.process .section-heading {
  max-width: 840px;
}

.process .section-heading h2,
.process h3 {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  min-height: 250px;
  padding: 30px 26px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.04);
}

.process-step__number {
  display: block;
  margin-bottom: 26px;
  color: var(--brand-accent);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}


/* =========================================================
   14. AUDIENCES
   ========================================================= */

.audiences {
  background: #fff;
}


/* =========================================================
   15. PRICING
   ========================================================= */

.pricing__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.pricing__content > p {
  margin-bottom: 26px;
}

.pricing__note {
  max-width: 620px !important;
  margin-top: 18px;
  margin-bottom: 0 !important;
  color: var(--text-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.pricing__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
  padding: 30px;
  margin-inline: auto;
  border: 4px solid var(--brand-soft);
  border-radius: 50%;
  outline: 10px solid #fff;
  background: var(--brand-primary);
  box-shadow: 0 20px 60px rgba(7, 30, 48, 0.18);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.pricing__badge span {
  display: block;
  max-width: 158px;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.1em;
  overflow-wrap: anywhere;
}

.pricing__badge strong {
  display: block;
  margin: 10px 0 7px;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: -0.06em;
}


/* =========================================================
   16. FINAL CTA
   ========================================================= */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(86, 146, 205, 0.24), transparent 30%),
    var(--brand-primary);
}

.final-cta::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta h2 span {
  color: var(--brand-accent);
}

.final-cta__content > p {
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .button-group {
  margin-top: 30px;
}


/* =========================================================
   17. CONTACT
   ========================================================= */

.contact {
  background: var(--bg-primary);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.contact__content > p {
  margin-bottom: 28px;
}

.contact-details {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  color: var(--brand-primary-soft);
}

.contact-details a {
  color: var(--brand-secondary);
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-medium);
  background: var(--bg-soft);
  box-shadow: var(--shadow-card);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--brand-primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #C9D0D5;
  border-radius: var(--radius-small);
  background: #fff;
  color: var(--brand-primary);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

.form-field input {
  min-height: 50px;
  padding: 0 14px;
}

.form-field select {
  min-height: 50px;
  padding: 0 44px 0 14px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none' stroke='%23071E30' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-field textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #AEB8C0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-secondary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(60, 130, 200, 0.12);
}

.form-field--checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.form-field--checkbox input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 4px;
  accent-color: var(--brand-secondary);
}

.form-field--checkbox label {
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.55;
}

.form-field--checkbox a {
  color: var(--brand-secondary);
  font-weight: 500;
}


/* =========================================================
   18. FOOTER
   ========================================================= */

.site-footer {
  padding-top: 70px;
  background: var(--brand-primary);
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 56px;
  padding-bottom: 54px;
}

.site-logo--footer {
  color: #fff;
}

.site-logo--footer .site-logo__mark {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--brand-primary-soft);
}

.site-footer__brand p {
  max-width: 330px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.96rem;
  letter-spacing: 0;
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__bottom {
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}


/* =========================================================
   19. RESPONSIVE – TABLET
   ========================================================= */
@media (max-width: 680px) {

  .hero-price-overview {
    max-width: none;
    margin: 0;
    padding: 28px 24px;

    border-radius: 24px;
  }

  .hero-price-overview__price strong {
    font-size: 3.2rem;
  }

}
@media (max-width: 1100px) {
  .main-navigation > ul {
    gap: 18px;
  }

  .main-navigation a {
    font-size: 0.89rem;
  }

  .hero__grid,
  .statement-section__grid,
  .regional__grid,
  .about__grid,
  .pricing__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 48px;
  }

  .hero__visual {
    max-width: 700px;
  }

  .hero__portrait {
    min-height: 500px;
  }

  .hero__portrait img {
    min-height: 500px;
  }

  .card-grid--4,
  .card-grid--5,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .regional-card {
    min-height: 360px;
  }

  .about__portrait {
    max-width: 700px;
  }

  .about__visual {
    max-width: 700px;
  }

  .about__portrait--portrait {
    width: min(260px, 48%);
    min-height: 260px;
    margin-left: auto;
  }

  .pricing__badge {
    margin-top: 10px;
  }

  .contact__content {
    max-width: 720px;
  }
}


/* =========================================================
   20. RESPONSIVE – MOBILE NAV / SMALL TABLET
   ========================================================= */

@media (max-width: 860px) {
  :root {
    --section-space: 84px;
  }

  .site-header__inner {
    min-height: 74px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-medium);
    background: #fff;
    box-shadow: var(--shadow-card-hover);
  }

  /*
    Sobald später JS ergänzt wird, kann die Navigation
    über .is-open eingeblendet werden.
  */
  .main-navigation.is-open {
    display: block;
  }

  .main-navigation > ul {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .main-navigation a {
    display: block;
    padding: 11px 12px;
    border-radius: 8px;
  }

  .main-navigation a:hover {
    background: var(--bg-secondary);
  }

  .main-navigation .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .card-grid--3,
  .card-grid--5 {
    grid-template-columns: 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
  }
}


/* =========================================================
   21. RESPONSIVE – MOBILE
   ========================================================= */

@media (max-width: 680px) {

  .site-logo__image {
    height: 40px;
    max-width: 210px;
  }

  .site-logo__image--footer {
    height: 44px;
    max-width: 230px;
  }

  :root {
    --section-space: var(--section-space-mobile);
  }

  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .hero {
    padding: 58px 0 54px;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 1.05rem;
  }

  .button-group {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__trust-list {
    flex-direction: column;
    gap: 8px;
  }

  .hero__portrait {
    min-height: 390px;
    border-radius: 26px 26px 92px 26px;
  }

  .hero__portrait img {
    min-height: 390px;
  }

  .price-badge {
    left: 14px;
    bottom: 14px;
    width: 126px;
    height: 126px;
  }

  .price-badge strong {
    font-size: 1.9rem;
  }

  .benefits {
    padding: 60px 0;
  }

  .statement-section {
    padding: 64px 0;
  }

  .statement-section__grid {
    gap: 30px;
  }

  .card-grid--4,
  .card-grid--5,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card,
  .audience-card {
    padding: 24px;
  }

  .service-card {
    min-height: unset;
  }

  .regional__grid,
  .about__grid,
  .pricing__grid,
  .contact__grid {
    gap: 40px;
  }

  .regional-card {
    min-height: 330px;
    padding: 32px 24px;
    border-radius: 24px;
  }

  .regional-card h3 {
    font-size: 1.7rem;
  }

  .about__portrait {
    min-height: 390px;
    border-radius: 72px 22px 22px 22px;
  }

  .about__portrait img {
    min-height: 390px;
  }

  .about__visual {
    min-height: 390px;
  }

  .about__portrait--portrait {
    width: min(190px, 55%);
    min-height: 210px;
    border-width: 4px;
  }

  .about__portrait--portrait img {
    min-height: 210px;
  }

  .process-step {
    min-height: unset;
  }

  .pricing__badge {
    width: 230px;
    height: 230px;
    padding: 24px;
  }

  .pricing__badge span {
    max-width: 135px;
    font-size: 0.6rem;
  }

  .pricing__badge strong {
    margin: 8px 0 6px;
    font-size: 3.1rem;
  }

  .final-cta {
    padding: 76px 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .form-field--full {
    grid-column: auto;
  }

  .site-footer {
    padding-top: 56px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* =========================================================
   22. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* =========================================================
   23. PRINT
   ========================================================= */

@media print {
  .site-header,
  .mobile-nav-toggle,
  .button,
  .contact-form,
  .final-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .hero,
  .benefits,
  .statement-section {
    padding: 30px 0;
    background: #fff !important;
    color: #000 !important;
  }

  h1,
  h2,
  h3,
  p {
    color: #000 !important;
  }
}


/* =========================================================
   TYPOGRAPHY OVERRIDES – LEICHTER, RUHIGER, ELEGANTER
   ========================================================= */

body {
  font-weight: 400;
}

h1 {
  font-weight: 500;
}

h2 {
  font-weight: 500;
}

h3 {
  font-weight: 500;
}

.hero h1,
.statement-section h2,
.section-heading h2,
.regional__content h2,
.about__content h2,
.pricing__content h2,
.contact__content h2,
.final-cta h2 {
  font-weight: 500;
}

.eyebrow {
  font-weight: 500;
}

.site-logo {
  font-weight: 500;
}

.site-logo__mark {
  font-weight: 600;
}

.site-logo__text {
  font-weight: 500;
}

.main-navigation a {
  font-weight: 400;
}

.main-navigation .nav-cta {
  font-weight: 500;
}

.button {
  font-weight: 500;
}

.hero__trust-list li {
  font-weight: 400;
}

.feature-card h3,
.service-card h3,
.audience-card h3,
.process-step h3,
.regional-card h3 {
  font-weight: 500;
}

.feature-card p,
.service-card p,
.audience-card p,
.process-step p,
.regional-card p,
.about__content p,
.pricing__content p,
.contact__content p,
.statement-section__content p {
  font-weight: 400;
}

.icon-box {
  font-weight: 500;
}

.service-card__meta {
  font-weight: 500;
}

.tag-list li,
.location-list li,
.check-list li {
  font-weight: 400;
}

.price-badge span,
.pricing__badge span {
  font-weight: 500;
}

.price-badge strong,
.pricing__badge strong {
  font-weight: 500;
}

.contact-details strong,
.contact-details a {
  font-weight: 500;
}

.form-field label {
  font-weight: 500;
}

.form-field--checkbox label {
  font-weight: 400;
}

.form-field--checkbox a {
  font-weight: 500;
}

.site-footer h2 {
  font-weight: 500;
}

.site-footer a,
.site-footer li,
.site-footer__brand p,
.site-footer__bottom p {
  font-weight: 400;
}

/* =========================================================
   CONTACT FORM – STATUS & BOT PROTECTION
   ========================================================= */

.form-field--honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  grid-column: 1 / -1;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-small);
  font-size: 0.95rem;
  line-height: 1.55;
}

.form-status--success {
  border: 1px solid rgba(40, 120, 80, 0.24);
  background: rgba(40, 120, 80, 0.08);
  color: #245b42;
}

.form-status--error {
  border: 1px solid rgba(170, 60, 60, 0.24);
  background: rgba(170, 60, 60, 0.08);
  color: #7b3030;
}

/* =========================================================
   LEGAL PAGES – IMPRESSUM / DATENSCHUTZ
   ========================================================= */

.legal-hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 90% 15%, rgba(86, 146, 205, 0.12), transparent 28%),
    var(--bg-secondary);
}

.legal-hero h1 {
  max-width: 820px;
}

.legal-hero__lead {
  max-width: 720px;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-content {
  background: var(--bg-primary);
}

.legal-content__inner {
  max-width: 820px;
}

.legal-block {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-default);
}

.legal-block:first-child {
  padding-top: 0;
}

.legal-block:last-child {
  border-bottom: 0;
}

.legal-block h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.35;
}

.legal-block p,
.legal-address {
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.75;
}

.legal-block p + p {
  margin-top: 7px;
}

.legal-block a {
  color: var(--brand-secondary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-block a:hover {
  color: var(--brand-secondary-hover);
}

.legal-block strong {
  color: var(--text-primary);
  font-weight: 500;
}

.legal-block--note {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-medium);
  background: var(--bg-soft);
}

@media (max-width: 680px) {
  .legal-hero {
    padding: 58px 0 44px;
  }

  .legal-block {
    padding: 24px 0;
  }

  .legal-block--note {
    padding: 20px;
  }
}

/* Ergänzung für die Datenschutzseite */

.legal-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
}

.legal-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.legal-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--brand-secondary);
}

/* =========================================================
   HERO PREISÜBERSICHT
   ========================================================= */



.hero-price-overview::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;

  width: 230px;
  height: 230px;

  border: 1px solid rgba(60, 130, 200, 0.16);
  border-radius: 50%;
}

.hero-price-overview__header {
  position: relative;
  z-index: 1;
}

.hero-price-overview__label {
  display: block;

  margin-bottom: 12px;

  color: var(--brand-secondary);

  font-size: 0.76rem;
  font-weight: 500;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-price-overview h2 {
  margin-bottom: 10px;

  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.hero-price-overview__header p {
  max-width: 340px;

  color: var(--text-secondary);

  font-size: 0.95rem;
  line-height: 1.65;
}

.hero-price-overview__price {
  display: flex;
  align-items: baseline;
  gap: 8px;

  margin: 32px 0 28px;
}

.hero-price-overview__price span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero-price-overview__price strong {
  color: var(--brand-primary);

  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1;

  letter-spacing: -0.05em;
}

.hero-price-overview__price small {
  color: var(--text-secondary);

  font-size: 0.82rem;
}

.hero-price-overview__features {
  display: grid;
  gap: 13px;

  margin-bottom: 30px;
}

.hero-price-overview__features li {
  display: flex;
  align-items: center;
  gap: 11px;

  color: var(--brand-primary-soft);

  font-size: 0.94rem;
  font-weight: 400;
}

.hero-price-overview__features li span {
  display: grid;
  place-items: center;

  width: 24px;
  height: 24px;

  flex: 0 0 24px;

  border-radius: 50%;

  background: rgba(60, 130, 200, 0.1);

  color: var(--brand-secondary);

  font-size: 0.75rem;
  font-weight: 600;
}

.hero-price-overview__footer {
  padding-top: 24px;

  border-top: 1px solid var(--border-default);
}

.hero-price-overview__footer p {
  margin-bottom: 18px;

  color: var(--text-muted);

  font-size: 0.82rem;
  line-height: 1.55;
}

.hero-price-overview__footer .button {
  width: 100%;
}
.hero-price-overview {
  position: relative;
  max-width: 480px;
  margin-left: auto;
  padding: 42px;
  overflow: hidden;

  border: 1px solid var(--border-default);
  border-radius: 32px;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(86, 146, 205, 0.15),
      transparent 38%
    ),
    #ffffff;

  box-shadow: var(--shadow-image);
}
@media (max-width: 680px) {

  .hero__grid,
  .hero__content,
  .hero__visual,
  .hero-price-overview {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-price-overview {
    margin: 0;
    padding: 28px 20px;
  }

  .hero-price-overview__price {
    flex-wrap: wrap;
    gap: 6px 8px;
  }

  .hero-price-overview__price strong {
    font-size: 2.8rem;
  }

  .hero h1 {
    max-width: 90%;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container-width));
  }
}

/* =========================================================
   FAQ PAGE
   ========================================================= */

.faq-content {
  background: var(--bg-primary);
}

.faq-content__inner {
  max-width: 880px;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-medium);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  color: var(--brand-primary);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--brand-secondary);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] {
  border-color: rgba(60, 130, 200, 0.45);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item__answer {
  padding: 0 28px 26px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item__answer a {
  color: var(--brand-secondary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer a:hover {
  color: var(--brand-secondary-hover);
}

.faq-cta {
  max-width: 880px;
  margin-top: 56px;
  padding: 44px;
  border-radius: var(--radius-large);
  background: var(--brand-primary);
  color: #fff;
}

.faq-cta h2 {
  max-width: 600px;
  margin: 12px 0 26px;
  color: #fff;
}

@media (max-width: 680px) {
  .faq-item summary {
    padding: 20px;
    gap: 16px;
    font-size: 1rem;
  }

  .faq-item__answer {
    padding: 0 20px 22px;
  }

  .faq-cta {
    margin-top: 40px;
    padding: 30px 24px;
    border-radius: 24px;
  }
}
