  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a2b3c;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
  }

  /* ============ Navigation ============ */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 14px 0;
  }
  nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo-img { height: 38px; width: auto; display: block; }
  .lang-switch {
    display: inline-flex;
    background: #f7fbff;
    border: 1px solid #e5e9ee;
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
  }
  .lang-switch a {
    text-decoration: none;
    background: transparent;
    border: none;
    color: #5a6b7c;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .lang-switch a:hover { color: #2a4a6a; }
  .lang-switch a.active {
    background: #3a9bd4;
    color: #fff;
  }

  /* ============ Hero ============ */
  .hero {
    padding: 160px 24px 100px;
    background: linear-gradient(135deg, #2a7aad 0%, #3a9bd4 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
  }
  .hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
  }
  .hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  .hero h1 .highlight { color: #f5c542; }
  .hero p.lead {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 480px;
  }
  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .btn-primary {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    background: #f5c542;
    color: #2a4a6a;
    box-shadow: 0 8px 24px rgba(245,197,66,0.35);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245,197,66,0.45);
  }

  /* Hero Visual - Booking.com sync mock */
  .hero-visual { position: relative; }
  .dashboard-mock {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    overflow: hidden;
    transform: perspective(1500px) rotateY(-8deg) rotateX(4deg);
    transition: transform 0.4s;
  }
  .dashboard-mock:hover {
    transform: perspective(1500px) rotateY(-4deg) rotateX(2deg);
  }
  .dashboard-header {
    background: #003580;
    padding: 14px 18px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
  }
  .dashboard-header::before {
    content: 'B.';
    background: #fff;
    color: #003580;
    width: 24px; height: 24px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
  }
  .dashboard-body {
    padding: 22px;
    color: #1a2b3c;
  }
  .sync-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: #f5f9fd;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
  .sync-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
    animation: pulse 2s infinite;
    flex-shrink: 0;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
    50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
  }
  .sync-item strong { color: #2a4a6a; }
  .sync-item .meta { margin-left: auto; color: #64748b; font-size: 0.8rem; }

  /* ============ Sections Common ============ */
  section { padding: 90px 24px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
  }
  .eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #3a9bd4;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #2a4a6a;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }
  .section-header p {
    font-size: 1.1rem;
    color: #5a6b7c;
  }

  /* ============ Booking Spotlight ============ */
  .spotlight {
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4fc 100%);
  }
  .spotlight-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  .spotlight-content h2 { margin-bottom: 20px; }
  .spotlight-content p.lead-para {
    font-size: 1.2rem;
    color: #4a5b6c;
    margin-bottom: 32px;
  }
  .highlight-stat {
    display: inline-block;
    background: #f5c542;
    color: #2a4a6a;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
  }
  .mini-list {
    list-style: none;
    display: inline-grid;
    gap: 14px;
    text-align: left;
    margin: 0 auto;
  }
  .mini-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: #2a4a6a;
  }
  .check-icon {
    flex-shrink: 0;
    width: 26px; height: 26px;
    background: #3a9bd4;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
  }

  /* ============ Awards ============ */
  .awards {
    background: #ffffff;
    padding: 80px 24px;
  }
  .awards .section-header { margin-bottom: 40px; }
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
  }
  .award-card {
    background: #f7fbff;
    border: 1px solid #e5e9ee;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .award-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,53,128,0.12);
    border-color: #cfe0ee;
  }
  .award-badge {
    width: 100%;
    height: auto;
    max-width: 320px;
    display: block;
    border-radius: 10px;
  }
  .award-caption {
    margin-top: 16px;
    font-size: 0.92rem;
    color: #5a6b7c;
    font-weight: 500;
    line-height: 1.45;
  }
  .award-caption strong {
    display: block;
    color: #2a4a6a;
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 2px;
  }

  /* ============ Testimonial (collapsible) ============ */
  .testimonial {
    background: #ffffff;
    padding: 0 24px 60px;
  }
  .testimonial-wrap {
    max-width: 760px;
    margin: 0 auto;
  }
  .testimonial-toggle {
    background: #f7fbff;
    border: 1px solid #e5e9ee;
    border-radius: 12px;
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    color: #2a4a6a;
    transition: background 0.2s, border-color 0.2s;
  }
  .testimonial-toggle::-webkit-details-marker { display: none; }
  .testimonial-toggle:hover {
    background: #eff7fd;
    border-color: #cfe0ee;
  }
  .testimonial-toggle .toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .testimonial-toggle .toggle-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #3a9bd4;
    font-weight: 700;
  }
  .testimonial-toggle .chevron {
    color: #3a9bd4;
    transition: transform 0.25s;
    font-size: 0.9rem;
  }
  .testimonial details[open] .chevron { transform: rotate(180deg); }
  .testimonial-body {
    padding: 28px 28px 8px;
    border-left: 3px solid #3a9bd4;
    margin: 18px 0 0 4px;
  }
  .testimonial-body blockquote {
    margin: 0 0 16px;
    color: #2a4a6a;
    font-size: 1.05rem;
    line-height: 1.65;
    font-style: italic;
  }
  .testimonial-body cite {
    display: block;
    font-style: normal;
    color: #5a6b7c;
    font-size: 0.92rem;
  }
  .testimonial-body cite strong {
    color: #2a4a6a;
    font-weight: 700;
  }

  /* ============ For Whom ============ */
  .for-whom {
    background: linear-gradient(180deg, #f7fbff 0%, #eaf4fc 100%);
  }
  .for-whom .eyebrow { color: #3a9bd4; }
  .for-whom h2 { color: #2a4a6a; }
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .audience-card {
    background: #ffffff;
    border: 1px solid #e5e9ee;
    border-top: 3px solid #3a9bd4;
    padding: 34px 28px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s;
  }
  .audience-card:hover {
    border-top-color: #2a7aad;
    box-shadow: 0 12px 28px rgba(42, 74, 106, 0.10);
    transform: translateY(-4px);
  }
  .audience-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3a9bd4;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .audience-card h3 {
    font-size: 1.15rem;
    color: #2a4a6a;
    margin-bottom: 8px;
  }
  .audience-card p {
    color: #5a6b7c;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* ============ Contact ============ */
  .contact-grid {
    max-width: 560px;
    margin: 0 auto;
  }

  form {
    background: #fff;
    padding: 36px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(58,155,212,0.1);
    border: 1px solid #e5e9ee;
  }
  .form-group { margin-bottom: 18px; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  label {
    display: block;
    font-weight: 600;
    color: #2a4a6a;
    margin-bottom: 6px;
    font-size: 0.9rem;
  }
  input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d5dde5;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fafbfc;
  }
  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #3a9bd4;
    box-shadow: 0 0 0 3px rgba(58,155,212,0.15);
    background: #fff;
  }
  textarea { resize: vertical; min-height: 100px; }
  form .btn-primary {
    background: linear-gradient(135deg, #2a7aad, #3a9bd4);
    color: #fff;
    box-shadow: 0 8px 24px rgba(58,155,212,0.3);
    width: 100%;
    justify-content: center;
  }

  /* ============ Footer ============ */
  footer {
    background: #1a3147;
    color: rgba(255,255,255,0.75);
    padding: 28px 24px;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
  }

  /* ============ Responsive ============ */
  @media (max-width: 968px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero-visual { order: -1; }
    .dashboard-mock { transform: none; }
    .audience-grid { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .awards { padding: 60px 24px; }
    .form-row { grid-template-columns: 1fr; }
    h2 { font-size: 1.8rem; }
    section { padding: 60px 24px; }
  }
  @media (max-width: 600px) {
    .hero { padding: 120px 24px 60px; }
    .hero h1 { font-size: 1.9rem; }
    .btn-primary { width: 100%; justify-content: center; }
    form { padding: 24px; }
    .logo-img { height: 32px; }
    .awards-grid { grid-template-columns: 1fr; }
  }

  /* ============ Kontaktformular: Honeypot + Status ============ */
  .hp-field {
    position: absolute !important;
    left: -9999px;
    top: -9999px;
    height: 0;
    overflow: hidden;
  }
  .form-status {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
  }
  .form-status.success { background: #ecfdf5; color: #047857; }
  .form-status.error { background: #fef2f2; color: #b91c1c; }
  /* ============ Footer-Links + Legal-Modal ============ */
  .footer-bottom a {
    color: rgba(255,255,255,0.75);
    text-decoration: underline;
  }
  .footer-bottom a:hover { color: #fff; }
  .legal-modal { position: fixed; inset: 0; z-index: 2000; }
  .legal-backdrop { position: absolute; inset: 0; background: rgba(10,20,30,0.6); }
  .legal-dialog {
    position: relative;
    max-width: 860px;
    height: min(85vh, 900px);
    margin: 6vh auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
  }
  .legal-head {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    padding: 0 14px;
    border-bottom: 1px solid #e8eef4;
  }
  .legal-close {
    border: none;
    background: #f0f4f8;
    color: #2a4a6a;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
  }
  .legal-close:hover { background: #e0e8f0; }
  .legal-frame { flex: 1; width: 100%; border: 0; background: #fff; }
  @media (max-width: 600px) {
    .legal-dialog { margin: 0; height: 100%; max-width: none; border-radius: 0; }
  }
