/* ==========================
   BASIS
========================== */

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;
    line-height:1.6;
  }
  
  .container{
    width:90%;
    max-width:1320px;
    margin:0 auto;
  }
  
  .section-spacing{
    padding:120px 0;
  }
  
  /* ==========================
     HERO
  ========================== */
  
  .sattel-hero{
    position:relative;
    height:100vh;
    min-height:850px;
    overflow:hidden;
    display:flex;
    align-items:center;
  }
  
  .sattel-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .sattel-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,.65) 100%
    );
  }
  
  .sattel-hero-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:760px;
  }
  
  .hero-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    margin-bottom:24px;
    font-size:14px;
  }
  
  .sattel-hero h1{
    font-size:clamp(4rem,7vw,7rem);
    line-height:0.95;
    letter-spacing:-5px;
    margin-bottom:28px;
  }
  
  .sattel-hero p{
    font-size:1.15rem;
    color:rgba(255,255,255,.88);
    max-width:620px;
    margin-bottom:40px;
  }
  
  .hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
  }
  
  /* ==========================
     BUTTONS
  ========================== */
  
  .btn-primary,
  .btn-secondary{
    height:58px;
    padding:0 32px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:800;
    transition:.3s ease;
  }
  
  .btn-primary{
    background:white;
    color:#111;
  }
  
  .btn-secondary{
    border:1px solid rgba(255,255,255,.35);
    color:white;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
  }
  
  .btn-primary:hover,
  .btn-secondary:hover{
    transform:translateY(-3px);
  }
  
  /* ==========================
     TYPO
  ========================== */
  
  .section-tag{
    display:inline-block;
    margin-bottom:20px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#2563eb;
  }
  
  .section-head{
    margin-bottom:70px;
  }
  
  .centered{
    text-align:center;
  }
  
  h2{
    font-size:clamp(2.8rem,4vw,4.8rem);
    line-height:1.05;
    letter-spacing:-3px;
    margin-bottom:22px;
  }
  
  /* ==========================
     INTRO
  ========================== */
  
  .intro-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
  }
  
  .intro-grid p{
    color:#555;
    margin-bottom:20px;
    font-size:1.05rem;
  }
  
  /* ==========================
     BENEFITS
  ========================== */
  
  .benefits-section{
    background:#fafafa;
  }
  
  .benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  
  .benefit-card{
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 18px 45px rgba(0,0,0,.05);
  }
  
  .benefit-card span{
    font-size:3rem;
    font-weight:900;
    color:#2563eb;
    display:block;
    margin-bottom:18px;
  }
  
  .benefit-card h3{
    margin-bottom:14px;
    font-size:1.4rem;
  }
  
  .benefit-card p{
    color:#666;
  }
  
  /* ==========================
     ABLAUF
  ========================== */
  
  .process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
  }
  
  .process-card{
    background:#f8f8f8;
    padding:34px;
    border-radius:28px;
  }
  
  .process-card strong{
    font-size:3rem;
    color:#2563eb;
    display:block;
    margin-bottom:16px;
  }
  
  .process-card h3{
    margin-bottom:12px;
  }
  
  .process-card p{
    color:#666;
  }
  
  /* ==========================
     PARTNER
  ========================== */
  
  .partner-section{
    padding:80px 0;
  }
  
  .partner-card{
    background:
    linear-gradient(
      135deg,
      #0f3fae,
      #174fcf
    );
  
    color:white;
  
    padding:60px;
    border-radius:40px;
  
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
  }
  
  .partner-card .section-tag{
    color:rgba(255,255,255,.75);
  }
  
  .partner-card p{
    font-size:1.1rem;
    color:rgba(255,255,255,.88);
  }
  
  /* ==========================
     FILIALEN
  ========================== */
  
  .booking-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
  }
  
  .booking-card{
    background:#f8f8f8;
    padding:36px;
    border-radius:28px;
    text-decoration:none;
    color:#111;
    transition:.3s ease;
  }
  
  .booking-card:hover{
    transform:translateY(-8px);
  }
  
  .booking-card span{
    display:block;
    font-size:2rem;
    font-weight:800;
    margin-bottom:18px;
  }
  
  .booking-card strong{
    color:#2563eb;
  }
  
  /* ==========================
     CTA
  ========================== */
  
  .final-cta{
    padding:120px 0;
    text-align:center;
    background:#fafafa;
  }
  
  .final-cta h2{
    margin-bottom:18px;
  }
  
  .final-cta p{
    margin-bottom:30px;
    color:#666;
  }
  
  .final-cta .btn-primary{
    background:#0f3fae;
    color:white;
  }
  
  /* ==========================
     RESPONSIVE
  ========================== */
  
  @media(max-width:1100px){
  
    .benefit-grid,
    .process-grid,
    .booking-grid{
      grid-template-columns:repeat(2,1fr);
    }
  
    .intro-grid,
    .partner-card{
      grid-template-columns:1fr;
    }
  
  }
  
  @media(max-width:700px){
  
    .section-spacing{
      padding:90px 0;
    }
  
    .hero-buttons{
      flex-direction:column;
    }
  
    .btn-primary,
    .btn-secondary{
      width:100%;
    }
  
    .benefit-grid,
    .process-grid,
    .booking-grid{
      grid-template-columns:1fr;
    }
  
    .sattel-hero{
      min-height:760px;
    }
  
    .sattel-hero h1{
      letter-spacing:-2px;
    }
  
  }