/* ===================================================
   das-formularwesen — Landing Page Stylesheet
   Brand: #213047 (navy), #d90d00 (red), #1e7b0f (green)
   =================================================== */

:root {
  --blue:        #213047;
  --blue-light:  #2d4161;
  --blue-dark:   #162438;
  --red:         #d90d00;
  --red-dark:    #b50b00;
  --green:       #1e7b0f;
  --white:       #ffffff;
  --light:       #f5f8fc;
  --text:        #1a2433;
  --muted:       #6b7a8d;
  --border:      #e2e8f0;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(33,48,71,.10);
  --shadow-lg:   0 12px 48px rgba(33,48,71,.18);
  --trans:       .3s ease;
  --max-w:       1160px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter Tight', system-ui, sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== Utilities ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5.5rem 0; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  font-weight: 900; line-height: 1.2; color: var(--blue); margin-bottom: 1rem;
}
.section-title span { color: var(--red); }
.section-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.75;
}

/* ===== Scroll Reveal ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.9rem; border-radius: 50px;
  font-size: .975rem; font-weight: 700; border: none; cursor: pointer;
  transition: all var(--trans); text-decoration: none; white-space: nowrap;
}
.btn-primary  { background: var(--red);   color: var(--white); }
.btn-primary:hover  { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,13,0,.35); }
.btn-ghost    { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-ghost:hover    { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-white    { background: var(--white); color: var(--red); }
.btn-white:hover    { background: #f2f2f2; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.18); }

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.25rem 0; transition: all var(--trans);
}
.nav.scrolled {
  background: var(--blue); padding: .8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.22);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.25rem; font-weight: 900; color: var(--white); }
.nav-logo em { color: var(--red); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; transition: color var(--trans); }
.nav-links a:hover { color: var(--white); }
.nav-cta-link {
  background: var(--red) !important; color: var(--white) !important;
  padding: .45rem 1.2rem; border-radius: 50px; font-weight: 700 !important;
  transition: background var(--trans) !important;
}
.nav-cta-link:hover { background: var(--red-dark) !important; }

/* ===== Nav Dropdown ===== */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex !important; align-items: center; gap: .3rem; }
.dropdown-caret {
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--trans); flex-shrink: 0; margin-top: 1px;
}
.has-dropdown.open .dropdown-caret { transform: rotate(180deg); }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + .85rem);
  left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  min-width: 220px; padding: .4rem 0; z-index: 300;
}
.has-dropdown.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex !important; align-items: center; gap: .55rem;
  padding: .6rem 1.1rem; font-size: .875rem; font-weight: 500;
  color: var(--text) !important;
  transition: background var(--trans), color var(--trans);
}
.nav-dropdown a:hover { background: var(--light); color: var(--blue) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 201; position: relative; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all var(--trans); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue) 0%, #1e2f47 55%, var(--blue-dark) 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 7rem 0 5rem;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -15%; width: 65vw; height: 65vw;
  background: radial-gradient(circle, rgba(217,13,0,.07) 0%, transparent 65%); pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(217,13,0,.15); border: 1px solid rgba(217,13,0,.3);
  color: #ff7b7b; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 900;
  color: var(--white); line-height: 1.12; margin-bottom: 1.5rem;
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.72); line-height: 1.8;
  margin-bottom: 2.25rem; max-width: 480px;
}
.hero-desc strong { color: var(--white); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.5); font-size: .82rem; }
.trust-icon { font-size: .9rem; }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.mascot-hero {
  width: min(380px, 90%);
  height: auto;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.4));
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.3); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-chevron {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.3); border-bottom: 2px solid rgba(255,255,255,.3);
  transform: rotate(45deg); animation: scroll-bounce 2s ease-in-out infinite;
}

/* ===== Problem / Solution ===== */
.problem { background: var(--light); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.problem-col { }
.problem-headline {
  font-size: clamp(1.35rem, 3vw, 1.8rem); font-weight: 800;
  color: var(--blue); line-height: 1.3; margin-bottom: 1rem;
}
.problem-headline em { color: var(--red); font-style: normal; }
.problem-text { font-size: 1rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .95rem; }
.check-list.bad  li::before { content: '✗'; color: var(--red);   font-weight: 900; line-height: 1.6; flex-shrink: 0; }
.check-list.good li::before { content: '✓'; color: var(--green); font-weight: 900; line-height: 1.6; flex-shrink: 0; }
.divider-col { width: 2px; background: linear-gradient(to bottom, transparent, var(--border), transparent); align-self: stretch; }

/* ===== Features ===== */
.features { background: var(--white); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.feat-card {
  background: var(--light); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--trans), box-shadow var(--trans);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feat-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.feat-title { font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: .5rem; }
.feat-text  { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ===== Steps ===== */
.steps-section { background: var(--light); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  margin-top: 3rem; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 2.1rem; left: calc(16.66% + .75rem); right: calc(16.66% + .75rem);
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
  z-index: 0;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 900; color: var(--white); background: var(--blue);
  border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--blue);
  margin-bottom: 1.25rem;
}
.step-num.accent-num { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.step-title { font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: .5rem; }
.step-text  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ===== Security ===== */
.security-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  overflow: hidden;
}
.s-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.s-content .section-title { color: var(--white); }
.s-content .section-sub   { color: rgba(255,255,255,.7); max-width: none; }
.s-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.s-list li { display: flex; gap: 1rem; align-items: flex-start; }
.s-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.s-text strong { display: block; font-size: .95rem; color: var(--white); margin-bottom: .2rem; }
.s-text span   { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.s-visual { display: flex; justify-content: center; }
.mascot-secure {
  max-width: 320px; animation: float 5s ease-in-out 1s infinite;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,.5));
}

/* ===== Stories ===== */
.stories-section { background: var(--white); }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3rem; }
.story-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  display: block; color: inherit;
  transition: transform var(--trans), box-shadow var(--trans);
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.story-card.soon { opacity: .6; pointer-events: none; cursor: default; }
.story-visual {
  background: linear-gradient(135deg, #eef2f8, #dde4ef);
  padding: 2rem 1.5rem; display: flex; align-items: flex-end; justify-content: center;
  gap: 1.5rem; min-height: 200px;
}
.story-visual img { height: 170px; width: auto; object-fit: contain; }
.story-visual .big-emoji { font-size: 5rem; line-height: 1; padding-bottom: .25rem; }
.story-body { padding: 1.5rem; }
.story-tag { display: block; font-size: .73rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--red); margin-bottom: .35rem; }
.soon-badge {
  display: inline-block; background: var(--blue); color: white;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 50px; margin-bottom: .35rem;
}
.story-title { font-size: 1rem; font-weight: 800; color: var(--blue); line-height: 1.35; margin-bottom: .5rem; }
.story-text  { font-size: .86rem; color: var(--muted); line-height: 1.65; }
.story-link  { display: inline-flex; align-items: center; gap: .35rem; font-size: .85rem; font-weight: 700; color: var(--red); margin-top: .75rem; transition: gap var(--trans); }
.story-link:hover { gap: .55rem; }

/* ===== Integrations ===== */
.integrations-section { background: var(--light); }
.int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.int-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; text-align: center;
  transition: transform var(--trans), box-shadow var(--trans);
}
.int-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.int-icon { font-size: 2rem; margin-bottom: .75rem; }
.int-name { font-size: .9rem; font-weight: 700; color: var(--blue); margin-bottom: .35rem; }
.int-desc { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.int-badge {
  display: inline-block; background: #e8f4e8; color: var(--green);
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  padding: .2rem .55rem; border-radius: 50px; margin-bottom: .5rem;
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #9e0900 100%);
  padding: 6rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -40%; left: -15%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 65%); pointer-events: none;
}
.cta-mascot-bg {
  position: absolute; right: 4%; bottom: 0; height: 290px; opacity: .12; pointer-events: none;
}
.cta-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; }
.cta-text  { font-size: 1.1rem; color: rgba(255,255,255,.82); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.75; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
footer { background: var(--blue); color: rgba(255,255,255,.7); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1.75rem; }
.footer-logo { font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: .75rem; }
.footer-logo em { color: var(--red); font-style: normal; }
.footer-tagline { font-size: .875rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(255,255,255,.35); }
.heart { color: var(--red); }

/* ===== Story Page ===== */
.story-hero {
  min-height: 75vh;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  display: flex; align-items: center; padding: 8rem 0 5rem; overflow: hidden; position: relative;
}
.story-hero::before {
  content: ''; position: absolute; top: -40%; right: -20%; width: 65vw; height: 65vw;
  background: radial-gradient(circle, rgba(30,123,15,.1) 0%, transparent 65%); pointer-events: none;
}
.story-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.story-hero-content .section-label { color: #7dd87d; }
.story-hero-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; color: var(--white); line-height: 1.18; margin-bottom: 1.25rem; }
.story-hero-title em { color: #7dd87d; font-style: normal; }
.story-hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.72); line-height: 1.78; margin-bottom: 2rem; }
.story-hero-visual { display: flex; justify-content: center; gap: 2rem; align-items: flex-end; }
.story-hero-visual img { height: 230px; filter: drop-shadow(0 15px 35px rgba(0,0,0,.4)); }
.story-hero-visual img:first-child { animation: float 4.5s ease-in-out infinite; }
.story-hero-visual img:last-child  { animation: float 4s ease-in-out .7s infinite; }
.use-cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 3rem; }
.use-case {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem;
}
.use-case-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.use-case-title { font-size: .95rem; font-weight: 700; color: var(--blue); margin-bottom: .4rem; }
.use-case-text  { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.quote-block {
  background: var(--blue); border-radius: var(--radius-lg); padding: 2.5rem;
  color: var(--white); text-align: center; margin: 3rem 0;
}
.quote-text { font-size: 1.3rem; font-weight: 700; line-height: 1.5; margin-bottom: 1rem; }
.quote-text em { color: #7dd87d; font-style: normal; }
.quote-source { font-size: .85rem; color: rgba(255,255,255,.55); }

/* ===== Animations ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0);  opacity: .4; }
  50%       { transform: rotate(45deg) translateY(5px); opacity: .85; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid, .s-grid, .story-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero { padding: 4.5rem 0 2.5rem; }
  .hero-grid { gap: 1.25rem; }
  .hero-visual { margin-top: 0; order: -1; }
  .hero-desc, .hero-actions, .hero-trust { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .s-visual { order: -1; }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-grid     { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .stories-grid   { grid-template-columns: repeat(2, 1fr); }
  .int-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .problem-grid   { grid-template-columns: 1fr; }
  .story-hero-visual { flex-direction: column; align-items: center; }
  .story-hero-visual img { height: 160px; }
  .use-cases-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    inset: 0; background: var(--blue);
    justify-content: center; align-items: center;
    gap: 2rem; font-size: 1.25rem; z-index: 200;
  }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .stories-grid  { grid-template-columns: 1fr; }
  .int-grid      { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .cta-mascot-bg { display: none; }
  /* Mobile dropdown — nur bei Klick öffnen */
  .nav-links.open .has-dropdown > a { flex-direction: row; justify-content: center; }
  .dropdown-caret { display: none; }
  .nav-links.open .has-dropdown.open .nav-dropdown {
    position: static; transform: none; box-shadow: none;
    border: none; border-top: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.07); border-radius: 0;
    min-width: auto; width: 100%; display: block; padding: .3rem 0;
  }
  .nav-links.open .has-dropdown.open .nav-dropdown a {
    justify-content: center; color: rgba(255,255,255,.75) !important;
    font-size: 1rem; padding: .55rem 1rem;
  }
  .nav-links.open .has-dropdown.open .nav-dropdown a:hover { background: rgba(255,255,255,.1); color: var(--white) !important; }
}

/* ===== Intro stats grid (3 Spalten → 1 Spalte auf Mobile) ===== */
.intro-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: left;
}
@media (max-width: 600px) {
  .intro-stats-grid { grid-template-columns: 1fr; }
}

/* ===== Partner grid ===== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.partner-logo-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem 1.5rem;
  min-height: 110px; transition: box-shadow var(--trans), border-color var(--trans);
}
.partner-logo-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue); }
.partner-logo-placeholder {
  font-size: .875rem; font-weight: 600; color: var(--muted); letter-spacing: .04em;
  text-transform: uppercase; opacity: .5;
}
@media (max-width: 720px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .partner-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   BLOG — Index & Artikel
   ===================================================================== */

/* ── Blog-Index Hero ── */
.blog-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 7rem 0 5rem;
  text-align: center;
  color: var(--white);
}
.blog-hero .section-label { color: rgba(255,255,255,.65); }
.blog-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900; line-height: 1.15;
  color: var(--white); margin-bottom: 1rem;
}
.blog-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,.78);
  max-width: 540px; margin: 0 auto; line-height: 1.75;
}

/* ── Blog card grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.blog-cat {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 50px;
  padding: .28rem .75rem; margin-bottom: 1rem;
}
.blog-cat-datenschutz  { background: #e8edf4; color: var(--blue); }
.blog-cat-gesundheit   { background: #e6f4e6; color: var(--green); }
.blog-cat-handwerk     { background: #fff0e0; color: #c25f00; }
.blog-cat-allgemein    { background: #f2f3f5; color: var(--muted); }
.blog-cat-technologie  { background: #fde8e8; color: var(--red); }

.blog-card h2 {
  font-size: 1.05rem; font-weight: 800; line-height: 1.35;
  color: var(--blue); margin-bottom: .75rem; flex: 1;
}
.blog-card-excerpt {
  font-size: .9rem; color: var(--muted); line-height: 1.65;
  margin-bottom: 1.25rem;
}
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto;
}
.blog-card-meta { font-size: .8rem; color: var(--muted); }
.blog-card-link {
  font-size: .875rem; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap var(--trans);
}
.blog-card:hover .blog-card-link { gap: .6rem; }

/* ── Article Page ── */
.article-hero-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 6.5rem 0 3.5rem;
  color: var(--white);
}
.breadcrumb-nav { margin-bottom: 2rem; }
.breadcrumb-nav ol {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .4rem; list-style: none; font-size: .85rem;
}
.breadcrumb-nav li { display: flex; align-items: center; gap: .4rem; }
.breadcrumb-nav li:not(:last-child)::after { content: '/'; color: rgba(255,255,255,.4); }
.breadcrumb-nav a { color: rgba(255,255,255,.65); transition: color var(--trans); }
.breadcrumb-nav a:hover { color: var(--white); }
.breadcrumb-nav [aria-current="page"] { color: rgba(255,255,255,.85); }

.article-header { max-width: 760px; }
.article-title {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 900; line-height: 1.2;
  color: var(--white); margin: .75rem 0 1.25rem;
}
.article-meta-bar {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.65);
}
.article-meta-bar time { color: rgba(255,255,255,.65); }

/* ── Article layout: 2-column ── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { order: -1; }
}

/* ── GEO Answer Box ── */
.geo-answer-box {
  background: #eef3fb;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.geo-box-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }
.geo-box-label {
  display: block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--blue); margin-bottom: .4rem;
}
.geo-box-text { font-size: .975rem; color: var(--text); line-height: 1.75; margin: 0; }

/* ── Article body typography ── */
.article-content h2 {
  font-size: 1.35rem; font-weight: 800; color: var(--blue);
  margin: 2.5rem 0 .75rem; line-height: 1.3;
}
.article-content h2:first-child { margin-top: 0; }
.article-content p {
  font-size: 1rem; color: var(--text); line-height: 1.8;
  margin-bottom: 1.25rem;
}
.article-content ul {
  margin: 0 0 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.article-content ul li {
  font-size: 1rem; color: var(--text); line-height: 1.7;
  padding-left: .5rem;
}
.article-content strong { color: var(--blue); }

/* ── Article FAQ ── */
.article-faq { margin-top: 3rem; }
.article-faq h2 { margin-top: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.faq-item summary {
  font-weight: 700; font-size: .975rem; color: var(--blue);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; flex-shrink: 0; color: var(--muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: .75rem; font-size: .95rem;
  color: var(--text); line-height: 1.75;
}

/* ── Sidebar ── */
.article-sidebar { position: sticky; top: 6rem; }
.sidebar-widget {
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
  font-size: .9rem; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 1rem;
}
.sidebar-widget ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.sidebar-widget ul li a {
  font-size: .9rem; color: var(--text); line-height: 1.4;
  transition: color var(--trans);
}
.sidebar-widget ul li a:hover { color: var(--red); }
.sidebar-widget ul li a::before { content: '→ '; color: var(--red); }
.sidebar-cta {
  background: var(--blue); border-radius: var(--radius-lg);
  padding: 1.5rem; text-align: center;
}
.sidebar-cta p {
  font-size: .9rem; color: rgba(255,255,255,.8);
  line-height: 1.6; margin-bottom: 1rem;
}
.sidebar-cta .btn { width: 100%; justify-content: center; font-size: .875rem; }
