@import "/includes/includes/global.css";
@import "/includes/fonts/raleway/styles.css";

:root {
  --blue-900: #0c1929;
  --blue-800: #122a45;
  --blue-700: #1a3a5c;
  --blue-600: #1e4976;
  --blue-500: #2563a8;
  --blue-400: #3b82c4;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --gold: #e9a84a;
  --gold-light: #f5d9a8;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
}

* {
  font-family: 'Montserrat', sans-serif;
}

body {
  color: var(--text-dark);
  line-height: 1.7;
  background: #fff;
}

/* ===== NAVBAR ===== */
.navbar {
  padding: 0;
  background: var(--blue-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

a {
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

.navbar .dropdown-menu {
  background: var(--blue-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.6rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.navbar .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-nav {
  background: var(--gold);
  color: var(--blue-900);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  border: none;
  transition: all 0.2s;
}

.btn-nav:hover {
  background: #d4922f;
  color: var(--blue-900);
}

/* ===== HERO ===== */
.hero {
  /*background: linear-gradient(165deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);*/
  /*background: linear-gradient(165deg, var(--blue-900) 0%, var(--blue-700) 40%, #1e5a8a 100%);*/
  background: linear-gradient(165deg, #122a45 0%, #1a4971 50%, #2a6a9e 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero .lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 540px;
  font-weight: 400;
}

.btn-hero {
  background: var(--gold);
  color: var(--blue-900);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero:hover {
  background: #fff;
  color: var(--blue-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.25s;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--blue-50);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--blue-100);
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-item i {
  color: var(--blue-500);
  font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-light {
  background: #fff;
}

.section-gray {
  background: #f8fafc;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ===== KI SECTION ===== */
.ki-section {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
  padding: 80px 0;
}

.ki-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s;
}

.ki-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.ki-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(233, 168, 74, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ki-card-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}

.ki-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.ki-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== FEATURES ===== */
.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  height: 100%;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.feature-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 20px 40px rgba(37, 99, 168, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.feature-icon i {
  font-size: 1.4rem;
  color: var(--blue-600);
}

.feature-card:hover .feature-icon {
  background: var(--blue-600);
}

.feature-card:hover .feature-icon i {
  color: #fff;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  margin-bottom: 0;
}

/* Pricing Card - V3 mit Akzentlinie */
.pricing-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.pricing-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--gold));
}

.pricing-inner {
  padding: 2rem;
}

.pricing-top {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 0.75rem;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid #e2e8f0;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta-section {
  /*background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);*/
  background: linear-gradient(165deg, #122a45 0%, #1a4971 50%, #2a6a9e 100%);
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer h5 {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-brand img {
  height: 26px;
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero {
    padding: 80px 0 100px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .trust-bar .container {
    gap: 1.5rem;
  }
}

/* estate45 Web/Smartphoen / Tablet */
.image-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
}

.image-group img {
  position: relative;
  height: auto !important;
  max-width: none;
  width: 100% !important;
}

.image-group .intro-img {
  position: relative;
}

.image-group .intro-img:nth-child(1) {
  z-index: 3;
  max-width: 194px;
  min-width: 29%;
}

.image-group .intro-img:nth-child(1) img {
  transform: translateY(-1.7%);
  left: -3px;
}

.image-group .intro-img:nth-child(2) {
  z-index: 2;
  max-width: 404px;
  min-width: 60%;
  margin-left: -29.5%;
}

.image-group .intro-img:nth-child(2) img {
  transform: translateY(8%);
}

.image-group .intro-img:nth-child(3) {
  z-index: 1;
  max-width: 546px;
  min-width: 82%;
  margin-left: -42.5%;
}

.image-group .intro-img:nth-child(3) img {
  transform: translateY(-1.9%);
}

/* Shared Styles */
.pricing-promo {
  background: linear-gradient(90deg, rgba(233, 168, 74, 0.1), rgba(233, 168, 74, 0.05));
  border: 1px solid rgba(233, 168, 74, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  text-align: center;
  color: #92400e;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--blue-500);
  font-size: 1rem;
}

.btn-pricing {
  display: block;
  width: 100%;
  background: var(--blue-600);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.875rem;
  border-radius: 0.5rem;
  border: none;
  text-align: center;
  text-decoration: none;
}

.btn-pricing:hover {
  background: var(--blue-700);
  color: #fff;
}

/* Sub Pages */
.page-header {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(165deg, #15314a 0%, #1e5277 60%, #3478a8 100%);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

/* Screenshot im Header */
.header-screenshot {
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: 55%;
  max-width: 700px;
  opacity: 0.15;
  z-index: 1;
}

.header-screenshot img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* Content Section */
.content {
  padding: 60px 0;
}

/* Intro Box */
.intro-box {
  background: linear-gradient(135deg, var(--blue-50) 0%, #fff 100%);
  border-left: 4px solid var(--blue-600);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.intro-box p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.8;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  /*display: flex;*/
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .icon {
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-600);
  font-size: 1rem;
}

.feature-list .text {
  padding-top: 0.4rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.feature-list .text a {
  color: var(--blue-600);
  text-decoration: none;
  border-bottom: 1px dashed var(--blue-400);
}

.feature-list .text a:hover {
  border-bottom-style: solid;
}

/* Screenshot Gallery */
.screenshot-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.screenshot-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-card .caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  position: sticky;
  top: 100px;
}

.sidebar-cta h4 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sidebar-cta p {
  opacity: 0.9;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.sidebar-cta .btn {
  background: var(--gold);
  color: var(--blue-900);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
}

.sidebar-cta .btn:hover {
  background: #d4922f;
}

/* Related Features */
.related-section {
  background: #f8fafc;
  padding: 60px 0;
}

.related-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  height: 100%;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.related-card:hover {
  border-color: var(--blue-400);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.related-card .icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--blue-600);
  margin-bottom: 1rem;
}

.related-card h5 {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.related-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 991px) {
  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .header-screenshot {
    display: none;
  }

  .sidebar-cta {
    position: relative;
    top: 0;
    margin-top: 2rem;
  }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 1rem;
}

.feature-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2.5rem;
  border-bottom: 1px solid #f1f5f9;
  color: var(--text-dark);
  line-height: 1.6;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.875rem;
  font-size: 1.1rem;
  color: var(--gold);
  /*background: var(--gold);*/
  border-radius: 50%;
  width: 1.1em;
  height: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list li a {
  color: var(--blue-600);
  text-decoration: none;
  border-bottom: 1px dashed var(--blue-400);
}

.feature-list li a:hover {
  border-bottom-style: solid;
}

/* Mega Menu */
.dropdown-mega {
  position: static;
}

.mega-menu {
  width: 100%;
  padding: 2rem 0;
  border: none;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background: var(--blue-800);
  border-top: 3px solid var(--gold);
}

.mega-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-heading i {
  margin-right: 0.5rem;
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-list li {
  margin-bottom: 0.5rem;
}

.mega-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.mega-list a:hover {
  color: #fff;
  padding-left: 0.25rem;
}

/* Bottom Highlights */
.mega-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.mega-highlight:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.mega-highlight i {
  font-size: 1.5rem;
  color: var(--gold);
}

.mega-highlight strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.mega-highlight span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Alle Features Link */
.mega-all-link {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: 2rem;
  transition: all 0.2s;
}

.mega-all-link:hover {
  background: var(--gold);
  color: var(--blue-900);
}

/* Feature Navigation */
.feature-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--blue-50);
  border-radius: 0.75rem;
}

.feature-nav a {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--blue-200);
  border-radius: 2rem;
  color: var(--blue-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.feature-nav a:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
}

/* Feature Section */
.feature-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e2e8f0;
}

.feature-section:last-child {
  border-bottom: none;
}

.feature-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 1.5rem;
}

.feature-section h2 i {
  color: var(--gold);
  margin-right: 0.75rem;
}

.feature-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-700);
}

/* Highlight Section (z.B. Akquise App) */
.feature-section-highlight {
  position: relative;
  background: linear-gradient(135deg, var(--blue-50) 0%, #fff 100%);
  border: 2px solid var(--gold);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

/* Feature Navigation */
.feature-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--blue-50);
  border-radius: 0.75rem;
}

.feature-nav a {
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid var(--blue-200);
  border-radius: 2rem;
  color: var(--blue-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}

.feature-nav a:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: #fff;
}

/* Feature Sections */
.feature-section {
  margin-bottom: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.feature-section:nth-child(even) {
  background: var(--blue-50);
  border-color: var(--blue-100);
}

.feature-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.feature-section h2 i {
  color: var(--gold);
  margin-right: 0.5rem;
}

.feature-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-700);
}

/* Feature List */
.feature-section .feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 2rem;
}

.feature-section .feature-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.15s;
}

.feature-section .feature-list li:hover {
  background: rgba(37, 99, 168, 0.03);
  padding-left: 2.25rem;
}

.feature-section .feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.feature-section .feature-list li:last-child {
  border-bottom: none;
}

.feature-section .feature-list li strong {
  color: var(--blue-700);
}

/* Highlight Section (Akquise App) */
.feature-section-highlight {
  background: linear-gradient(135deg, var(--blue-50) 0%, #fff 100%) !important;
  border: 2px solid var(--gold) !important;
  position: relative;
}

.feature-section-highlight::before {
  content: "NEU";
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--gold);
  color: var(--blue-900);
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Slim Page Header für Legal-Seiten */
.page-header-slim {
  padding: 120px 0 40px;
}

.page-header-slim h1 {
  font-size: 2rem;
  margin: 0;
}

/* Legal Blocks */
.legal-block {
  margin-bottom: 3rem;
}

.legal-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.legal-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-700);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-block p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Legal List (dl/dt/dd) */
.legal-list {
  margin: 0;
}

.legal-list dt {
  font-weight: 600;
  color: var(--blue-700);
  margin-top: 1rem;
}

.legal-list dt:first-child {
  margin-top: 0;
}

.legal-list dd {
  margin-left: 0;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.legal-list a {
  color: var(--blue-600);
}

/* Legal Terms List */
.legal-terms {
  padding-left: 0;
  list-style: none;
}

.legal-terms li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-terms li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.legal-terms li:last-child {
  border-bottom: none;
}

.legal-terms li strong {
  color: var(--blue-700);
}

/* Testimonial Summary Cards */
.testimonial-summary {
  margin-bottom: 4rem;
}

.summary-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  height: 100%;
  transition: all 0.2s;
}

.summary-card:hover {
  border-color: var(--blue-300);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.summary-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.25rem;
}

.summary-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 0.5rem;
}

.summary-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Testimonial List */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-item {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
}

@media (max-width: 767px) {
  .testimonial-item {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.testimonial-logo {
  flex-shrink: 0;
  width: 140px;
}

.testimonial-logo img {
  max-width: 100%;
  height: auto;
}

.testimonial-content {
  position: relative;
  flex: 1;
}

.testimonial-quote {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-size: 2rem;
  color: var(--blue-100);
}

.testimonial-text {
  padding-left: 2rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  padding-left: 2rem;
}

.testimonial-author strong {
  display: block;
  color: var(--blue-700);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Form Card */
.form-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue-100);
}

.required {
  color: var(--gold);
}

/* Info Boxes */
.info-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 1rem;
}

.info-box h3 i {
  color: var(--gold);
  margin-right: 0.5rem;
}

.info-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.info-box a {
  color: var(--blue-600);
}

.info-box-highlight {
  background: linear-gradient(135deg, var(--blue-50), #fff);
  border-color: var(--gold);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 1rem;
}

.info-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.info-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-message i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.success-message h3 {
  font-size: 1.5rem;
  color: var(--blue-800);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

