/* =========================================================================
   LCC Nexus — static site
   Breakpoints mirror the original design: <810 (mobile), 810–1199 (tablet),
   >=1200 (desktop).
   ========================================================================= */

:root {
  --brand:        #0389a7;
  --brand-dark:   #3d3d3d;
  --ink:          #000000;
  --ink-soft:     #1e1e1e;
  --ink-card:     #242527;
  --paper:        #ffffff;
  --paper-warm:   #f1f1f1;
  --paper-cool:   #eeeeee;
  --link:         #0099ff;
  --logo-tint:    rgba(187, 187, 187, 0.1);

  --gutter: 20px;
  --font: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-alt: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

@media (min-width: 810px)  { :root { --gutter: 50px;  } }
@media (min-width: 1200px) { :root { --gutter: 120px; } }

/* ------------------------------- reset ------------------------------- */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, p, figure, blockquote { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
/* height:auto is required, otherwise the intrinsic `height` attribute
   suppresses any CSS aspect-ratio we set. */
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ------------------------------ buttons ------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 1000px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  text-decoration: none;
  text-align: center;
  transition: filter 0.18s ease, transform 0.18s ease;
}
.btn:hover  { filter: brightness(1.1); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; }

.btn--primary { background: var(--brand); }
.btn--dark    { background: var(--brand-dark); }

.btn--wide {
  width: 100%;
  padding: 17px 20px;
  font-size: 22px;
  line-height: 30.8px;
}

/* =============================== HERO =============================== */

.hero {
  position: relative;
  background: var(--ink);
  min-height: 800px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0 20px auto 20px;
  width: calc(100% - 40px);
  height: 780px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1400px) {
  .hero__bg { object-fit: contain; }
}

.hero__inner {
  position: relative;
  padding-top: 172px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo { width: 290px; height: auto; }

.hero__title {
  width: 100%;
  max-width: 940px;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: 0.6px;
}

.hero__lead {
  width: 100%;
  max-width: 940px;
}

.hero__cta { margin-top: 46px; }

@media (max-width: 1199.98px) {
  .hero__title { font-size: 38px; line-height: 45.6px; }
  .hero__lead  { font-size: 16px; line-height: 22px; }
}

@media (max-width: 1199.98px) {
  .hero__inner { padding-top: 200px; }
}

@media (max-width: 809.98px) {
  .hero__inner { padding-top: 134px; }
  .hero__title { font-size: 31px; line-height: 37.2px; }
  .hero__lead  { font-size: 16px; line-height: 19px; }
}

/* ========================= WAS IST LCC NEXUS ========================= */

.about {
  background: linear-gradient(180deg, #000 0%, var(--ink-card) 100%);
  color: #fff;
  padding-block: 60px 70px;
}

.about__inner {
  display: grid;
  grid-template-columns: 496px 1fr;
  gap: 100px;
  align-items: start;
}

.about__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  color: var(--paper-warm);
}

.about__text p + p { margin-top: 20px; }

/* The intro video keeps a fixed 318px height at every breakpoint. */
.about__video {
  width: 100%;
  height: 318px;
  border-radius: 20px;
  object-fit: cover;
  margin-top: 58px;
}

.pillars {
  margin: 34px 0 0 10px;
  max-width: 476px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.pillar img { width: 60px; height: 53px; }

.pillar span {
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  color: var(--paper-warm);
}

@media (max-width: 1199.98px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }
  .about__title { text-align: center; }
  .about__text p { font-size: 16px; line-height: 22px; }
  /* three even columns across the full content width */
  .pillars { margin: 60px 0 0; max-width: none; gap: 0; }
  .about__video { margin-top: 27px; }
}

@media (max-width: 809.98px) {
  .about__title { font-size: 40px; line-height: 48px; }
  .about__text p { font-size: 16px; line-height: 19px; text-align: left; }
  .pillars { margin-top: 72px; }
  .pillar { gap: 20px; }
  .pillar span { font-size: 15px; line-height: 21px; }
}

/* ===================== shared section header ===================== */

.section-head {
  display: flex;
  align-items: center;          /* the CTA sits centred against the text block */
  justify-content: space-between;
  gap: 0;
}

.section-head__text { flex: 1; }

.section-head h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
}

.section-head p { margin-top: 0; }

.partners .section-head p { line-height: 28px; }

@media (max-width: 1199.98px) {
  .section-head {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }
  .section-head p { font-size: 16px; line-height: 22px; }
}

@media (max-width: 809.98px) {
  .section-head h2 { font-size: 32px; line-height: 40px; }
  .section-head p  { font-size: 16px; line-height: 19px; }
}

/* ========================= WAS SICH ÄNDERT ========================= */

.changes {
  background: linear-gradient(180deg, #e1e1e1 0%, #fff 100%);
  padding-block: 79px 50px;
}

.cards {
  margin-top: 59px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.card {
  background: var(--paper-warm);
  border-radius: 8px;
  box-shadow: 2px 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
  display: flex;
  flex-direction: column;
}

/* Card art is a fixed 262px band at every breakpoint. */
.card img {
  width: 100%;
  height: 262px;
  object-fit: cover;
  border-radius: 8px;
}

.card p {
  margin-top: 16px;
  padding-inline: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color: var(--ink-card);
}

/* ------------------------- Das bewährte Modell ------------------------- */

.model {
  margin-top: 82px;
  display: grid;
  grid-template-columns: 1fr 614px;
  align-items: start;
}

.model__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}

.checklist { margin-top: 34px; display: grid; gap: 10px; }

.checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: start;
}

.checklist img { margin-top: 4px; }

.model__right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.model__plane { width: 42px; height: 24px; }

.model__rule {
  display: block;
  width: 1px;
  height: 80px;
  margin-top: 11px;
  background: var(--ink);
}

.model__statement {
  margin-top: 1px;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

@media (max-width: 1199.98px) {
  /* two per row, with the last card spanning the full width */
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .card:last-child { grid-column: 1 / -1; }
  .model { grid-template-columns: 1fr 400px; }
  .checklist li { font-size: 16px; line-height: 22px; }
  .model__statement { font-size: 15px; line-height: 20px; }
}

@media (max-width: 809.98px) {
  .changes { padding-block: 60px 70px; }
  .cards { grid-template-columns: 1fr; margin-top: 40px; gap: 30px; }
  .card p { font-size: 24px; line-height: 28.8px; }
  .model { grid-template-columns: 1fr; gap: 30px; margin-top: 60px; }
  .model__title { text-align: center; }
  .checklist li { font-size: 16px; line-height: 19px; }
  .model__right { align-items: center; }
  .model__statement {
    margin-top: 10px;
    font-size: 32px;
    line-height: 35.2px;
  }
}

/* ============================= PARTNER ============================= */

.partners {
  background: linear-gradient(180deg, #e1e1e1 0%, #fff 100%);
  padding-block: 64px 60px;
}

/* --------------------------- logo ticker --------------------------- */

.ticker {
  margin-top: 27px;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
}

.ticker__track {
  flex: none;                 /* must overflow the rail, not shrink into it */
  display: flex;
  gap: 10px;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker__group li {
  flex: none;
  height: 100px;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--logo-tint);
  border-radius: 10px;
}

.ticker__group img { height: auto; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 5px)); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .ticker { overflow-x: auto; }
}

/* ---------------------------- testimonials ---------------------------- */

.quotes {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.quote__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.quote__name {
  margin-top: 9px;
  font-size: 32px;
  font-weight: 700;
  line-height: 38.4px;
}

.quote__role {
  font-size: 18px;
  font-weight: 700;
  line-height: 25.2px;
  color: var(--ink-soft);
}

.quote__body {
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--ink-soft);
}

/* On narrow screens the three quotes become a swipeable carousel,
   matching the original behaviour. */
@media (max-width: 1199.98px) {
  .quotes {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 310px;
    gap: 50px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    /* let the track bleed to the viewport edges like the original */
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scrollbar-width: thin;
  }
  .quote { scroll-snap-align: start; }
  .quote__name { font-size: 28px; line-height: 34px; }
}

/* --------------------------- video testimonial --------------------------- */

.testimonial {
  position: relative;
  margin-top: 98px;
}

.testimonial video {
  width: 100%;
  aspect-ratio: 1200 / 665;
  border-radius: 35px;
  object-fit: cover;
  background: #000;
}

@media (max-width: 809.98px) {
  .testimonial video { aspect-ratio: auto; height: 362px; }
}

.testimonial__caption {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: fit-content;
  max-width: 92%;
  padding: 4px 22px 9px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 0 20px 20px 0;
  color: #fff;
  font-family: var(--font-alt);
  pointer-events: none;
}

.testimonial__name {
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 40.8px;
}

.testimonial__role {
  display: block;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}

.testimonial__brand {
  position: absolute;
  right: 24px;
  bottom: 87px;
  width: 339px;
  height: auto;
  pointer-events: none;
}

@media (max-width: 1199.98px) {
  .testimonial { margin-top: 70px; }
  .testimonial__caption { bottom: 46px; padding: 5px 14px 7px; }
  .testimonial__name { font-size: 19px; line-height: 22.8px; }
  .testimonial__role { font-size: 13px; line-height: 15.6px; }
  .testimonial__brand { width: 190px; right: 14px; bottom: 52px; }
}

@media (max-width: 809.98px) {
  .testimonial__caption { bottom: 34px; padding: 4px 10px 5px; }
  .testimonial__name { font-size: 12px; line-height: 14.4px; }
  .testimonial__role { font-size: 11px; line-height: 13.2px; }
  .testimonial__brand { width: 120px; right: 10px; bottom: 38px; }
}

/* ============================== CONNECT ============================== */

.connect { padding-block: 40px 79px; }

.connect__inner {
  display: grid;
  grid-template-columns: 542px 622px;
  gap: 36px;
  align-items: stretch;
}

/* ------------------------------ booking ------------------------------ */

.booking {
  background: var(--paper-cool);
  border-radius: 24px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  padding: 32px;
}

.badge {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 44px;
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
}

.booking__title {
  margin-top: 16px;
  font-size: 48px;
  font-weight: 700;
  line-height: 51px;
}

.booking__title--light { font-weight: 300; }

.booking__body { margin-top: 16px; }

.booking .btn { margin-top: 50px; }

.booking__note {
  margin-top: 50px;
  font-size: 19px;
  font-weight: 800;
  font-style: italic;
  line-height: 26px;
}

/* ------------------------------- signup ------------------------------- */

.signup {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.03),
    0 0.6px 0.6px -1.25px rgba(3, 137, 167, 0.72),
    0 2.29px 2.29px -2.5px rgba(3, 137, 167, 0.64),
    0 10px 10px -3.75px rgba(3, 137, 167, 0.25);
}

.signup__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* dark scrim so the headline stays readable over the photo */
.signup::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 52%;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.signup__content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 787px;
  padding: 72px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.signup__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 51px;
}

.signup__body {
  font-size: 30px;
  font-weight: 300;
  line-height: 36px;
}

.signup__logo {
  margin-top: auto;
  padding: 33px;
  background: rgba(0, 0, 0, 0.27);
  border-radius: 12px;
  display: flex;
  justify-content: center;
}

.signup__logo img { width: 372px; max-width: 100%; height: auto; }

.signup .btn--wide { margin-top: 10px; }

@media (max-width: 1199.98px) {
  .connect__inner { grid-template-columns: 1fr; gap: 30px; }
  .booking__body  { font-size: 16px; line-height: 22px; }
  .signup__content { min-height: 600px; padding: 48px; }
}

@media (max-width: 809.98px) {
  .connect { padding-block: 30px 50px; }
  .booking { padding: 32px; text-align: center; }
  .booking__title { font-size: 42px; line-height: 46px; }
  .booking__body  { font-size: 16px; line-height: 19px; }
  .booking__note  { font-size: 16px; line-height: 19px; }
  .signup__content { min-height: 520px; padding: 32px; text-align: center; }
  .signup__title { font-size: 42px; }
  .signup__body  { font-size: 24px; line-height: 30px; }
  .signup__logo  { padding: 24px; }
  .signup__logo img { width: 246px; }
}

/* ============================== FOOTER ============================== */

.footer { padding-block: 0 53px; }

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand img { height: auto; }
.footer__brand img:first-child { width: 192px; }
.footer__brand img:last-child  { width: 134px; }

.footer__legal { color: var(--ink-soft); }
.footer__legal a { color: var(--link); text-decoration: none; }
.footer__legal a:hover { text-decoration: underline; }

@media (max-width: 1199.98px) {
  .footer__inner { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 809.98px) {
  .footer { padding-bottom: 70px; }
  .footer__inner { gap: 40px; }
  .footer__brand { flex-direction: column; gap: 16px; }
}

/* ========================== scroll reveal ========================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
