/* ============================================
   STRAIPH SOLUTIONS – Landing Page Styles
   Mobile-First · Performance-optimiert
   ============================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --primary: #5271FF;
  --primary-dark: #3D5BDF;
  --accent-orange: #FF7252;
  --accent-blue: #52BAFF;
  --accent-purple: #8352FF;
  --bg: #FAF9F6;
  --bg-alt: #F2F0ED;
  --text: #1A1A2E;
  --text-muted: #6B6B80;
  --text-light: #9999AB;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.1);
  --shadow-glow: 0 0 40px rgba(82, 113, 255, 0.15);
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

.section-title {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(82, 113, 255, 0.3);
}

.btn-primary::after {
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(82, 113, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(26, 26, 46, 0.15);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(26, 26, 46, 0.06);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Inter', var(--font-display), system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--primary);
  padding: 6px 0;
}

.nav-cta {
  font-size: 0.9rem;
  padding: 10px 24px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(82, 113, 255, 0.3), transparent 70%);
  top: -10%;
  right: -10%;
  animation: float-slow 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(131, 82, 255, 0.2), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(82, 186, 255, 0.2), transparent 70%);
  top: 40%;
  right: 20%;
  animation: float-slow 18s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-headline {
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--text) 0%, #2D2D4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.badge-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* --- VERGLEICH --- */
.vergleich {
  padding: 100px 0;
  background: var(--bg-alt);
  position: relative;
}

.vergleich::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82, 113, 255, 0.2), transparent);
}

.comparison-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
}

.comparison-header {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
  padding: 0 16px;
}

.comp-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 0;
  white-space: nowrap;
}

.comp-old {
  color: var(--text-light);
}

.comp-new {
  color: var(--primary);
  text-align: right;
}

.comparison-row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
  align-items: center;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.comparison-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.comp-cell {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
}

.comp-old-cell p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.comp-new-cell {
  justify-content: flex-start;
}

.comp-new-cell p {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.comp-icon-old,
.comp-icon-new {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.comp-icon-old svg,
.comp-icon-new svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.comp-icon-old svg { color: var(--text-light); }
.comp-icon-new svg { color: var(--primary); }

.comp-divider {
  display: flex;
  justify-content: center;
  align-items: center;
}

.comp-divider svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  opacity: 0.5;
}

/* --- AGENTS --- */
.agents {
  padding: 100px 0;
  position: relative;
}

.agents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.agent-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.agent-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.agent-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
  transition: opacity var(--transition);
  pointer-events: none;
}

.agent-card:hover .agent-glow {
  opacity: 0.22;
}

.agent-01 .agent-glow { background: var(--primary); }
.agent-02 .agent-glow { background: var(--accent-purple); }
.agent-03 .agent-glow { background: var(--accent-blue); }

.agent-01 { border-top: 3px solid var(--primary); }
.agent-02 { border-top: 3px solid var(--accent-purple); }
.agent-03 { border-top: 3px solid var(--accent-blue); }

.agent-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.agent-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(82, 113, 255, 0.08);
}

.agent-01 .agent-number { color: var(--primary); background: rgba(82, 113, 255, 0.08); }
.agent-02 .agent-number { color: var(--accent-purple); background: rgba(131, 82, 255, 0.08); }
.agent-03 .agent-number { color: var(--accent-blue); background: rgba(82, 186, 255, 0.08); }

.agent-name {
  font-size: 1.3rem;
}

.agent-visual {
  display: flex;
  justify-content: center;
  margin: 28px 0;
}

.agent-orb {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb-core {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.3;
  animation: orb-pulse 3s ease-in-out infinite;
}

.orb-ring:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orb-ring:nth-child(2) {
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.5s;
  opacity: 0.15;
}

@keyframes orb-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
}

.agent-01 .orb-core { background: var(--primary); box-shadow: 0 0 20px rgba(82, 113, 255, 0.4); }
.agent-01 .orb-ring { border-color: var(--primary); }
.agent-02 .orb-core { background: var(--accent-purple); box-shadow: 0 0 20px rgba(131, 82, 255, 0.4); }
.agent-02 .orb-ring { border-color: var(--accent-purple); }
.agent-03 .orb-core { background: var(--accent-blue); box-shadow: 0 0 20px rgba(82, 186, 255, 0.4); }
.agent-03 .orb-ring { border-color: var(--accent-blue); }

.agent-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* --- PROZESS / SO FUNKTIONIERT'S --- */
.prozess {
  padding: 100px 0;
  background: var(--bg-alt);
  position: relative;
}

.prozess::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82, 113, 255, 0.2), transparent);
}

.steps-flow {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(82, 113, 255, 0.3);
}

.step-connector {
  position: absolute;
  left: 26px;
  top: 52px;
  width: 2px;
  height: calc(100% + 32px);
  background: linear-gradient(to bottom, var(--primary), rgba(82, 113, 255, 0.1));
  z-index: 1;
}

.step:last-child .step-connector { display: none; }

.step-content h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- ZIELGRUPPE / FÜR WEN --- */
.zielgruppe {
  padding: 100px 0;
  position: relative;
}

.zielgruppe-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.zielgruppe-image {
  flex-shrink: 0;
  display: none;
  width: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.zielgruppe-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.zielgruppe-text .section-title {
  text-align: left;
  margin-left: 0;
}

.zielgruppe-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.zielgruppe-text p:last-child {
  margin-bottom: 0;
}

/* --- FAQ --- */
.faq {
  padding: 100px 0;
  background: var(--bg-alt);
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82, 113, 255, 0.2), transparent);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- KONTAKT / CTA + FORMULAR --- */
.kontakt {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-purple) 100%);
  color: var(--white);
}

.kontakt-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.kontakt-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.kontakt-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--white);
  top: -30%;
  right: -15%;
}

.kontakt-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--white);
  bottom: -20%;
  left: -10%;
}

.kontakt-inner {
  position: relative;
  z-index: 1;
}

.kontakt-text {
  text-align: center;
  margin-bottom: 3rem;
}

.kontakt-text h2 {
  margin-bottom: 0.75rem;
}

.kontakt-text p {
  opacity: 0.85;
  font-size: 1.1rem;
}

.kontakt-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 6px;
  opacity: 0.9;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  color: var(--text);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-full {
  grid-column: 1 / -1;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit {
  width: 100%;
  font-size: 1.1rem;
  padding: 18px 36px;
}

/* Form validation */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not([value=""]) {
  border-color: var(--accent-orange);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
  animation: fadeInUp 0.6s ease-out;
}

.form-success.show {
  display: block;
}

.form-success .success-icon svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--white);
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  opacity: 0.85;
  font-size: 1.05rem;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- FOOTER --- */
.footer {
  padding: 40px 0;
  background: var(--text);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.footer-contact a {
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-sep {
  margin: 0 4px;
  opacity: 0.4;
}

.footer-links {
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE – TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .agents-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }

  .agent-card {
    padding: 36px 28px;
  }

  .steps-flow {
    flex-direction: row;
    gap: 0;
    max-width: 100%;
    justify-content: center;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 300px;
    gap: 20px;
    padding: 0 24px;
  }

  .step-connector {
    display: none;
  }

  .step::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(to right, var(--primary), rgba(82, 113, 255, 0.1));
  }

  .step:last-child::after { display: none; }

  .zielgruppe-image {
    display: block;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-right {
    text-align: right;
  }
}

/* ============================================
   RESPONSIVE – DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hero {
    padding: 140px 0 100px;
  }

  .comparison-row {
    padding: 24px 28px;
  }

  .agents-grid {
    gap: 32px;
  }

  .agent-card {
    padding: 44px 36px;
  }

  .zielgruppe-inner {
    gap: 80px;
  }

  .zielgruppe-image {
    width: 420px;
  }

  .zielgruppe-image img {
    height: 460px;
  }
}

/* ============================================
   RESPONSIVE – SMALL MOBILE (< 480px)
   ============================================ */
@media (max-width: 479px) {
  .comparison-header {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .comp-cell {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .comp-divider {
    display: flex;
    justify-content: center;
  }

  .comp-divider svg {
    transform: rotate(90deg);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .shape,
  .orb-ring {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .navbar,
  .hero-bg-shapes,
  .agent-visual,
  .kontakt-bg,
  .zielgruppe-image {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
