﻿*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f6f7f8;
  --white: #ffffff;
  --text: #102430;
  --muted: #5f7380;
  --line: rgba(16, 36, 48, 0.1);
  --navy: #0a4b84;
  --navy-deep: #083c6b;

  /* Eisblau */
  --teal: #8fd3e8;
  --teal-dark: #4b9fbd;
  --mint: #e6f4fa;
  --mint-soft: #f2f9fc;

  --shadow: 0 20px 50px rgba(6, 29, 46, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 40px), 1200px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(16, 36, 48, 0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.3rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-nav a {
    color: var(--navy);
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--navy);
}

.main-nav .nav-cta {
  background: linear-gradient(135deg, #5fbcd6, #a8dff0);
  color: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(143, 211, 232, 0.34), transparent 0 32%),
    linear-gradient(115deg, #07345e 10%, #0a4b84 55%, #6fc5df 110%);
  color: var(--white);
  padding: 88px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 26px;
}

.section-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-dark);
}

.section-kicker.accent {
  color: #bcebf8;
}

.section-kicker.accent-light {
  color: #d9f4fb;
}

.hero h1,
.section h2,
.signup-copy h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 680px;
}

.hero h1 span {
  display: block;
  color: #d9f4fb;
  font-style: italic;
  font-weight: 500;
}

.hero-text {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #5fbcd6, #a8dff0);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(95, 188, 214, 0.26);
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.btn-full {
  width: 100%;
}

.hero-card,
.form-card,
.why-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(7, 34, 53, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.card-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #d9f4fb;
}

.hero-card h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.card-subline {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.76);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.stat-box {
  padding: 18px 12px;
  text-align: center;
  border-radius: 16px;
  background: rgba(4, 31, 49, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box strong {
  display: block;
  font-size: 1.4rem;
  color: #d9f4fb;
}

.stat-box span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}

.capacity {
  padding-top: 6px;
}

.capacity-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.capacity-head span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.capacity-head strong {
  font-size: 1.5rem;
  color: #d9f4fb;
}

.capacity-head small {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress-bar {
  width: 32%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fd3e8, #d9edf5);
}

.hero-curve {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -160px;
  height: 290px;
  background: var(--bg);
  border-radius: 50%;
}

.ticker-bar {
  position: relative;
  z-index: 2;
  margin-top: -10px;
  background: #8fd3e8;
  color: var(--navy-deep);
  overflow: hidden;
}

.ticker-track {
  width: max-content;
  min-width: 100%;
  padding: 14px 0;
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.ticker-track span::after {
  content: "•";
  margin-left: 34px;
  opacity: 0.5;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--bg);
}

.section-mint {
  background: #e6f4fa;
}

.section-dark {
  background: linear-gradient(180deg, #083c6b 0%, #0a4b84 100%);
  color: var(--white);
}

.section h2,
.signup-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-lead,
.section-lead-light {
  max-width: 100%;
  margin: 18px 0 0;
  font-size: 1.12rem;
}

.section-lead {
  color: var(--muted);
}

.section-lead-light {
  color: rgba(255, 255, 255, 0.82);
}

.card-grid {
  display: grid;
  gap: 4px;
  margin-top: 42px;
}

.card-grid.four {
   grid-template-columns: repeat(4, minmax(280px, 1fr));
}

.info-card {
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(16, 36, 48, 0.06);
  box-shadow: 0 12px 30px rgba(14, 30, 42, 0.05);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #f2f9fc, #e6f4fa);
  font-size: 1.4rem;
}

.card-index {
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  color: #4b9fbd;
}

.info-card h3,
.date-card h3,
.signup-info h3,
.form-card h3,
.why-card h3,
.timeline-content h3 {
  margin: 0;
  line-height: 1.2;
}

.form-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
}

.info-card p:last-child,
.signup-info p,
.timeline-content p,
.date-card p,
.why-card p,
.form-subline,
.privacy-note {
  margin: 10px 0 0;
  color: var(--muted);
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: center;
}

.timeline {
  position: relative;
  margin-top: 44px;
  display: grid;
  gap: 16px;
}

.timeline-line {
  position: absolute;
  left: 92px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(143, 211, 232, 0.75);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 36px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.timeline-time {
  text-align: right;
  font-weight: 700;
  color: #35626c;
  font-size: 0.96rem;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d9edf5;
  border: 3px solid #8fd3e8;
  position: relative;
  z-index: 1;
}

.timeline-dot.dark {
  border-color: var(--navy);
}

.timeline-dot.light {
  border-color: var(--white);
  background: transparent;
}

.timeline-content {
  padding: 6px 0;
}

.timeline-content p {
  color: #527078;
}

.timeline-item.featured .timeline-content {
  padding: 20px 24px;
  border-radius: 18px;
  background: linear-gradient(90deg, var(--navy) 0%, #6fc5df 100%);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(10, 75, 132, 0.18);
}

.timeline-item.featured .timeline-content p {
  color: rgba(255, 255, 255, 0.82);
}

.why-card {
  padding: 30px;
  background: linear-gradient(180deg, #0a4b84, #083c6b);
  color: var(--white);
}

.why-card p {
  color: rgba(255, 255, 255, 0.78);
}

.why-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.why-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.why-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(143, 211, 232, 0.22);
  color: #d9f4fb;
  font-size: 0.8rem;
  font-weight: 800;
}

.region-block + .region-block {
  margin-top: 26px;
}

.region-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.date-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(16, 36, 48, 0.08);
  background: var(--white);
  transition: 0.2s ease;
  box-shadow: 0 10px 24px rgba(14, 30, 42, 0.04);
  cursor: pointer;
}

.date-card:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 211, 232, 0.5);
  box-shadow: 0 14px 30px rgba(14, 30, 42, 0.08);
  cursor: pointer;
}

.date-card:focus {
  outline: 3px solid rgba(143, 211, 232, 0.55);
  outline-offset: 4px;
}

.date-card p {
  font-weight: 600;
  color: #4b9fbd;
}

.date-card-cinema {
  color: #000 !important;
  font-weight: 700;
  margin-top: 0.6rem;
}

.date-card-address {
  color: #000 !important;
  font-size: calc(1em - 2pt);
  line-height: 1.35;
  margin-top: 0.35rem;
}

.date-card-address p {
  color: #000 !important;
  margin: 0;
  font-weight: 500;
}

.date-card-seats {
  color: #4b9fbd !important;
  font-weight: 800 !important;
}

.date-card span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: #4b9fbd;
  flex-shrink: 0;
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 54px;
  align-items: start;
}

.signup-info-list {
  margin-top: 34px;
  display: grid;
  gap: 20px;
}

.signup-info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.signup-info p {
  color: rgba(255, 255, 255, 0.74);
}

.signup-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(143, 211, 232, 0.18);
  border: 1px solid rgba(143, 211, 232, 0.24);
  flex-shrink: 0;
}

.form-card {
  padding: 28px;
  background: #ffffff;
  color: var(--text);
}

.form-subline {
  margin-bottom: 20px;
  font-size: 1rem;
}

.capacity-form .capacity-head span {
  color: #4b9fbd;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.capacity-form .capacity-head strong {
  color: #4b9fbd;
}

.capacity-form .capacity-head small {
  color: var(--muted);
}

.capacity-form .progress-track {
  background: #e6f4fa;
}

.form-row {
  margin-top: 16px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #4b9fbd;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}

.form-group2 label {
  display: block;
  margin-bottom: 8px;
  color: #4b9fbd;
  
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}


.form-group input, 
.form-group select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(16, 36, 48, 0.12);
  background: #fff;
  color: var(--text);
  outline: none;
}

.form-group2 input, 
.form-group2 select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(16, 36, 48, 0.12);
  background: #fff;
  color: var(--text);
  outline: none;
}


.form-group input:focus,
.form-group select:focus {
  border-color: #8fd3e8;
  box-shadow: 0 0 0 4px rgba(143, 211, 232, 0.2);
}


.form-group2 input:focus,
.form-group2 select:focus {
  border-color: #8fd3e8;
  box-shadow: 0 0 0 4px rgba(143, 211, 232, 0.2);
}

.form-group small {
  display: block;
  margin-top: 6px;
  color: #89a0ac;
}

.form-group2 small {
  display: block;
  margin-top: 6px;
  color: #89a0ac;
}
.form-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f2f9fc;
  color: #56707a;
  font-size: 0.94rem;
}

.privacy-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 18px;
}

.site-footer {
  background: #f0f4f6;
  border-top: 1px solid rgba(16, 36, 48, 0.08);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
}

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

.footer-links p {
  margin: 0 0 10px;
  color: var(--muted);
}

.footer-links nav {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--navy);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .hero-grid,
  .timeline-layout,
  .signup-layout,
  .card-grid.four,
  .date-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .why-card,
  .form-card {
    max-width: 680px;
  }

  .timeline-layout,
  .signup-layout {
    gap: 36px;
  }
}

@media (max-width: 800px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav,
  .footer-links,
  .footer-links nav {
    justify-content: flex-start;
    text-align: left;
  }

  .hero {
    padding: 70px 0 96px;
  }

  .section {
    padding: 82px 0;
  }

  .hero-actions,
  .badge-row {
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .form-row.two,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    left: 76px;
  }

  .timeline-item {
    grid-template-columns: 58px 24px minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow {
    width: min(calc(100% - 24px), var(--container));
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .hero-text,
  .section-lead,
  .section-lead-light {
    font-size: 1rem;
  }

  .hero-card,
  .form-card,
  .why-card,
  .info-card {
    padding: 22px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .section h2,
  .signup-copy h2 {
    font-size: 2.2rem;
  }

  .date-card {
    padding: 18px 16px;
  }
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}

.main-nav a:hover {
  background: rgba(16, 36, 48, 0.06);
  color: var(--navy-deep);
}

.hero-visual-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 29, 46, 0.22);
  background: #ffffff;
}

.hero-visual-card img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-card img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.form-consent {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox input {
  margin-top: 3px;
  transform: scale(1.1);
}

.form-consent a {
  color: var(--navy);
  font-weight: 600;
}

.form-grid{
    display:grid;
    grid-template-columns:
    180px
    180px
    minmax(240px, 1.5fr)
    150px
    minmax(300px, 2fr);
    gap:12px;
    align-items:end;
}

