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

:root {
  --deep-navy: #15202B;
  --off-white: #F5F3EE;
  --padel-lime: #D7F000;
  --sea-blue: #2D6F8E;
  --sand: #D9C9AE;
  --text-dark: #1A2430;
  --text-light: #F3F1EC;
  --text-secondary: #5F7C86;
  --text-accent: #D7F000;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg picture, .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,32,43,.72) 0%, rgba(21,32,43,.55) 50%, rgba(21,32,43,.82) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.8rem, 3vw, 2rem);
}

.hero__racket {
  width: clamp(60px, 12vw, 120px);
  height: auto;
  opacity: .85;
  filter: brightness(1.1);
}

.hero__racket--left {
  transform: rotate(-15deg);
}

.hero__racket--right {
  transform: rotate(15deg) scaleX(-1);
}

.hero__brand-text {
  width: clamp(220px, 42vw, 500px);
  height: auto;
  position: relative;
  top: -10px;
}

.hero__tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(.85rem, 2vw, 1.1rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  color: rgba(243,241,236,.8);
}

.hero__pill {
  display: inline-block;
  margin-top: 2rem;
  padding: .65rem 1.6rem;
  border: 1px solid rgba(215,240,0,.45);
  border-radius: 100px;
  font-size: clamp(.85rem, 1.8vw, 1rem);
  font-weight: 500;
  color: var(--text-light);
  backdrop-filter: blur(4px);
}

.btn {
  display: inline-block;
  padding: .9rem 2.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}

.btn--lime {
  background: var(--padel-lime);
  color: var(--deep-navy);
}

.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--padel-lime);
}

.btn--outline:hover {
  background: var(--padel-lime);
  color: var(--deep-navy);
}

.hero__cta {
  margin-top: 2.5rem;
}

/* ========== INTRO ========== */
.intro {
  padding: 5rem 0;
  background: var(--off-white);
}

.intro__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.intro__lead {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--deep-navy);
  margin-bottom: 1.5rem;
  line-height: 1.35;
}

.intro__text {
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.intro__highlight {
  display: block;
  margin-top: 1.5rem;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: var(--deep-navy);
  font-size: 1.05rem;
  line-height: 1.8;
  background: linear-gradient(135deg, rgba(215,240,0,.12), rgba(45,111,142,.08));
  border-left: 3px solid var(--padel-lime);
  border-radius: 0 10px 10px 0;
}

.intro__img {
  border-radius: 12px;
  overflow: hidden;
}

.intro__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

/* ========== KEY FACTS ========== */
.facts {
  padding: 5rem 0;
  background: var(--deep-navy);
  color: var(--text-light);
}

.facts__title {
  text-align: center;
  margin-bottom: .6rem;
}

.facts__title img {
  display: inline-block;
  width: clamp(160px, 28vw, 320px);
  height: auto;
}

.facts__subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: .95rem;
  margin-bottom: 3rem;
}

.facts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 600px) {
  .facts__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .facts__grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 600px) {
  .fact--center { grid-column: 2; }
}

.fact {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.06);
}

.fact__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(215,240,0,.1);
  color: var(--padel-lime);
  font-size: 1.1rem;
}

.fact__label {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.45;
}

.fact__sub {
  font-size: .82rem;
  color: var(--text-secondary);
  margin-top: .15rem;
}

/* ========== STATEMENT ========== */
.statement {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--deep-navy);
  text-align: center;
}

.statement__text {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-light);
}

.statement__highlight {
  color: var(--padel-lime);
  font-weight: 700;
}

/* ========== LEISTUNGEN ========== */
.leistungen {
  padding: 5rem 0;
  background: var(--sand);
}

.leistungen__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .leistungen__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.leistungen__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--deep-navy);
  margin-bottom: 1.8rem;
}

.leistungen__list {
  list-style: none;
}

.leistungen__list li {
  position: relative;
  padding: .65rem 0 .65rem 1.8rem;
  font-size: .98rem;
  border-bottom: 1px solid rgba(21,32,43,.08);
}

.leistungen__list li:last-child { border-bottom: none; }

.leistungen__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sea-blue);
}

.leistungen__img {
  border-radius: 12px;
  overflow: hidden;
}

.leistungen__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ========== CTA / PREIS ========== */
.cta {
  padding: 5rem 0;
  background: var(--deep-navy);
  color: var(--text-light);
}

.cta__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .cta__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.cta__price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--padel-lime);
  line-height: 1.1;
}

.cta__price-prefix {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: .3rem;
}

.cta__badge {
  display: inline-block;
  margin-top: 1.2rem;
  padding: .5rem 1.2rem;
  background: rgba(215,240,0,.12);
  border: 1px solid rgba(215,240,0,.3);
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--padel-lime);
  letter-spacing: .03em;
}

.cta__fine {
  margin-top: 1.5rem;
  font-size: .8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta__button {
  margin-top: 2rem;
}

.cta__img {
  border-radius: 12px;
  overflow: hidden;
}

.cta__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ========== FOOTER ========== */
.footer {
  padding: 2.5rem 0;
  background: var(--deep-navy);
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--text-secondary);
  font-size: .85rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .2s;
}

.footer a:hover { color: var(--text-light); }

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__impressum {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  line-height: 1.6;
}

/* ========== SCROLL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PHYSICS BALL ========== */
#ball-container {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  will-change: transform;
}

#ball-container img {
  width: 44px;
  height: 44px;
  will-change: transform;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}

#ball-shadow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 8px;
  background: radial-gradient(ellipse, rgba(0,0,0,.35), transparent 70%);
  border-radius: 50%;
  will-change: opacity, transform;
}

@media (min-width: 768px) {
  #ball-container.active { display: block !important; }
}
