.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-69ba1401 */.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(26,26,26,.95) 0%, rgba(26,26,26,.6) 50%, rgba(243,85,56,.15) 100%),
      var(--wpr-bg-3f590714-0f73-43d6-a390-56b15621147c) center/cover no-repeat;
    filter: brightness(.7);
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: block;
  }

  .hero-text {
    max-width: 720px;
  }

  .hero-text .badge {
    display: inline-block;
    background: #F35538;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    animation: fadeSlideUp .6s ease both;
  }

  .hero-text h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.0rem);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeSlideUp .6s ease .15s both;
    color: #ffffff;
  }

  .hero-text h1 span {
    color: #F35538;
  }

  .hero-text p {
    font-size: 1.05rem;
    max-width: 580px;
    margin-bottom: 32px;
    animation: fadeSlideUp .6s ease .3s both;
    color: #ffffff;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #F35538;
    color: #ffffff;
    font-weight: 700;
    font-size: .95rem;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    animation: fadeSlideUp .6s ease .45s both;
  }
  .hero-cta:hover {
    background: #ff7a63;
    transform: translateY(-2px);
  }
  .hero-cta svg {
    transition: transform .3s;
  }
  .hero-cta:hover svg {
    transform: translateX(4px);
  }

  .hero-image {
    display: none;
  }

  /* ─── SECTION: ANGEBOTE ─── */
  .section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .section-header .overline {
    font-size: .85rem;
    letter-spacing: 4px;
    color: #F35538;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1px;
    color: #ffffff;
  }

  .section-header .divider {
    width: 60px;
    height: 3px;
    background: #F35538;
    margin: 20px auto 0;
    border-radius: 3px;
  }

  /* CARDS */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
  }

  .card {
    background: #222222;
    border-radius: 12px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid rgba(255,255,255,.05);
  }

  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(243,85,56,.12);
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #F35538;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
  }
  .card:hover::before {
    transform: scaleX(1);
  }

  .card-icon {
    width: 56px;
    height: 56px;
    background: rgba(243,85,56,.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .card-icon svg {
    width: 28px;
    height: 28px;
    color: #F35538;
  }

  .card h3 {
    font-size: 1.5rem;
    letter-spacing: .5px;
    margin-bottom: 10px;
    color: #ffffff;
  }

  .card p {
    font-size: .9rem;
    color: #ffffff;
    line-height: 1.7;
  }

  .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: #F35538;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    transition: gap .3s;
  }
  .card-link:hover { gap: 12px; }

  /* ─── INFO STRIP ─── */
  .info-strip {
    background: linear-gradient(135deg, #F35538, #c9412a);
    padding: 48px 40px;
  }

  .info-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
  }

  .info-strip h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: .5px;
    color: #ffffff;
  }

  .info-strip p {
    font-size: .95rem;
    max-width: 500px;
    color: #ffffff;
  }

  .info-strip a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #1a1a1a;
    font-weight: 700;
    font-size: .9rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform .2s, box-shadow .3s;
    flex-shrink: 0;
  }
  .info-strip a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
  }

  /* ─── DETAILS SECTION ─── */
  .details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .details-image {
    position: relative;
  }

  .details-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
  }

  .details-image .float-stat {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #F35538;
    padding: 20px 28px;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(243,85,56,.35);
  }

  .float-stat .number {
    font-size: 2.4rem;
    line-height: 1;
    color: #ffffff;
  }

  .float-stat .label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
  }

  .details-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
  }

  .details-text h2 span {
    color: #F35538;
  }

  .details-text p {
    color: #ffffff;
    font-size: .95rem;
    margin-bottom: 16px;
  }

  .features-list {
    list-style: none;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: #ffffff;
  }

  .features-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: rgba(243,85,56,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #F35538;
    font-size: 12px;
    font-weight: 700;
  }

  /* ─── FOOTER-MINI ─── */
  .footer-mini {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255,255,255,.06);
    color: #ffffff;
    font-size: .8rem;
  }

  .footer-mini a {
    color: #F35538;
    text-decoration: none;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 860px) {
    .hero-content { padding: 60px 24px; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .details { grid-template-columns: 1fr; }
    .details-image { order: -1; }
    .features-list { grid-template-columns: 1fr; }
    .info-strip-inner { flex-direction: column; text-align: center; }
  }/* End custom CSS */