/* =========================================
   CORPORATE WEAR — Premium Editorial v2
   Ref: landonorris.com quality level
   ========================================= */

:root {
  --color-accent:       #d2ff00;
  --color-accent-muted: #d2ff00;
  --color-bg-dark:      #0f1a2e;
  --color-bg-light:     #f2f4f7;
  --color-bg-mid:       #c4c8d0;
  --color-text-on-dark: #eef0f4;
  --color-text-on-light:#0a0e1a;
  --color-muted:        #4a5068;

  /* Two distinct font personalities */
  --font-display: 'Unbounded', cursive;
  --font-body:    'DM Sans', sans-serif;

  /* Massive impact sizes like Lando */
  --text-hero:    clamp(3rem, 7.5vw, 8rem);
  --text-impact:  clamp(2.5rem, 6vw, 6rem);
  --text-h2:      clamp(1.8rem, 4vw, 3rem);
  --text-h3:      clamp(1rem, 1.4vw, 1.2rem);
  --text-body:    1rem;
  --text-small:   0.875rem;

  /* Compact spacing — tight, Lando-level */
  --section-pad:  clamp(4rem, 6vw, 5rem);
  --gap:          1.25rem;
  --container:    1200px;
  --radius:       12px;
  --radius-pill:  100px;

  /* Premium timing — Lando uses cubic-bezier(0.65, 0.05, 0, 1) */
  --ease-premium: cubic-bezier(0.65, 0.05, 0, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --duration:     0.75s;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--color-text-on-light);
  background: var(--color-bg-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* Smooth BG transition when scrolling between sections */
  transition: background-color 0.8s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }

/* Selection styling — matches accent */
::selection { background: var(--color-accent); color: var(--color-bg-dark); }

.c { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.s { position: relative; }
.accent { color: var(--color-accent); }

/* =========================================
   SECTION LABELS & TITLES
   ========================================= */
.section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}
.section-label--light { color: var(--color-accent); }

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text-on-light);
  margin-bottom: 2rem;
}
.section-title--light { color: var(--color-text-on-dark); }

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--color-accent); color: var(--color-bg-dark); border: none;
  padding: 0.9rem 1.75rem; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: transform var(--duration) var(--ease-premium), box-shadow var(--duration) var(--ease-premium);
  cursor: pointer;
}
.btn-primary:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 40px rgba(210, 255, 0, 0.3);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; border: 1.5px solid var(--color-text-on-light); color: var(--color-text-on-light);
  padding: 0.9rem 1.75rem; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all var(--duration) var(--ease-premium);
}
.btn-ghost:hover { background: var(--color-accent); color: var(--color-bg-dark); border-color: var(--color-accent); }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.6rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform var(--duration) var(--ease-premium); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* =========================================
   NAV — Glassmorphism
   ========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: all 0.5s var(--ease-premium);
}
.nav--scrolled {
  background: rgba(10, 18, 38, 0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav--scrolled .nav__brand { color: var(--color-text-on-dark); }

.nav__brand {
  display: flex; flex-direction: column;
  transition: color 0.5s var(--ease-premium);
}
.nav__brand-name {
  font-family: var(--font-display); font-size: clamp(1.1rem, 4.4vw, 2rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--color-text-on-light);
  line-height: 1;
}
.nav--scrolled .nav__brand-name { color: var(--color-text-on-dark); font-size: 1.2rem; }
.nav__brand-sub {
  font-family: var(--font-body); font-size: 0.55rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--color-muted);
  margin-top: 2px;
}
.nav--scrolled .nav__brand-sub { color: rgba(244,244,237,0.4); }

.nav__links {
  display: flex; gap: 2rem;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 500;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--color-text-on-light); }
.nav--scrolled .nav__links a { color: rgba(244,244,237,0.5); }
.nav--scrolled .nav__links a:hover { color: var(--color-text-on-dark); }

.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__menu { display: none; background: none; border: none; width: 28px; height: 20px; position: relative; }
.nav__menu span { display: block; width: 100%; height: 2px; background: var(--color-text-on-light); position: absolute; left: 0; }
.nav__menu span:first-child { top: 0; }
.nav__menu span:last-child { bottom: 0; }

/* =========================================
   HERO — Premium, atmospheric
   ========================================= */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--color-bg-light);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 2rem;
}

/* Hero background — lightweight, no blur */
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(160deg, #f2f4f7 0%, #e4e8f0 40%, #eef0f4 100%);
}

/* Dot grid pattern */
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.8;
}

/* Accent circles — decorative rings */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.hero__orb--1 {
  width: 550px; height: 550px;
  border: 2px solid rgba(168,204,0,0.25);
  top: -15%; right: -5%;
  animation: orbSpin 40s linear infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  border: 2px solid rgba(40,44,32,0.12);
  bottom: -10%; left: -8%;
  animation: orbSpin 30s linear infinite reverse;
}
.hero__orb--3 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(210,255,0,0.1) 0%, transparent 60%);
  top: 10%; right: 5%;
}

@keyframes orbSpin {
  to { transform: rotate(360deg); }
}

/* Diagonal accent lines */
.hero__bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(168,204,0,0.1) 40px,
    rgba(168,204,0,0.1) 42px
  );
}

/* No grain — kills performance */
.hero__grain { display: none; }

/* Content layout — side by side */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}

/* Left side: Text */
.hero__text {
  flex: 1;
  max-width: 600px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--color-accent);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--color-text-on-light);
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  color: var(--color-accent-muted);
  /* Slightly different from body text to stand out but still readable */
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 400;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 0.7rem;
}

/* Right side: Floating Polo — MASSIVE */
.hero__visual {
  flex: 0 0 60%;
  max-width: 800px;
  position: relative;
  margin-right: -10%;
  margin-top: -3%;
}

/* Subtle ring behind polo */
.hero__visual-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 85%; height: 85%;
  border-radius: 50%;
  border: 1px solid rgba(210,255,0,0.1);
  pointer-events: none;
  animation: ringPulse 5s ease-in-out infinite;
}
.hero__visual-glow::after {
  content: '';
  position: absolute; inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(210,255,0,0.06);
  animation: orbSpin 25s linear infinite;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.04); }
}

.hero__img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  will-change: transform;
  animation: heroFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12));
  /* Entrance: scale up from slightly smaller */
  transform-origin: center center;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-18px) rotate(1deg) scale(1.02); }
}

/* Mini fan cards under hero polo */
.hero__mini-fan {
  display: flex;
  justify-content: center;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}

.hero__mini-card {
  width: 60px;
  height: 72px;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-premium);
  cursor: pointer;
  margin: 0 -6px; /* overlap slightly */
}

.hero__mini-card:nth-child(1) { transform: rotate(-8deg); }
.hero__mini-card:nth-child(2) { transform: rotate(-4deg); }
.hero__mini-card:nth-child(3) { transform: rotate(0deg); z-index: 1; }
.hero__mini-card:nth-child(4) { transform: rotate(4deg); }
.hero__mini-card:nth-child(5) { transform: rotate(8deg); }

.hero__mini-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.25) !important;
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.hero__mini-fan:hover .hero__mini-card:not(:hover) {
  opacity: 0.5;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.6); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* =========================================
   CERT BAR — Trust slider under hero
   ========================================= */
.cert-bar {
  padding: 2.5rem 2rem;
  background: var(--color-bg-light);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.cert-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.cert-bar__label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 1rem;
}

.cert-logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.45;
  transition: opacity 0.4s ease, filter 0.4s ease;
  filter: grayscale(100%);
}
.cert-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes certScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   STATEMENT + MARQUEE — Merged, compact
   ========================================= */
.statement-marquee {
  padding: 2.5rem 0 1rem;
  background: var(--color-bg-dark);
  overflow: hidden;
  position: relative;
  /* Angled top edge */
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
  margin-top: -1px;
}
.statement-marquee::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.marquee { display: flex; overflow: hidden; }
.marquee__inner {
  display: flex; align-items: center; gap: 2.5rem;
  white-space: nowrap;
}
.marquee--forward .marquee__inner { animation: marqueeForward 30s linear infinite; }
.marquee--reverse .marquee__inner { animation: marqueeReverse 35s linear infinite; }
.marquee--reverse .marquee__inner span { opacity: 0.25; }

.marquee__inner span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(244,244,237,0.4);
}
.marquee__dot { color: rgba(244,244,237,0.15) !important; font-size: 0.6rem !important; }
.marquee:hover .marquee__inner { animation-play-state: paused; }

@keyframes marqueeForward { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeReverse { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.statement__text {
  font-family: var(--font-display);
  font-size: var(--text-impact);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-on-dark);
  max-width: 950px;
  margin: 1.5rem auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* =========================================
   LIFESTYLE — Full-width image section
   ========================================= */
.lifestyle {
  padding: 0;
  position: relative;
}
.lifestyle__img {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
  background: url('../assets/images/team.jpg') center 30%/cover no-repeat;
  background-attachment: fixed;
  position: relative;
}
.lifestyle__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.4), rgba(26,26,26,0.7));
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.lifestyle__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--color-text-on-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* =========================================
   PROCESS — Stacked sticky cards
   ========================================= */
.process { padding: var(--section-pad) 0; background: var(--color-bg-light); }

.process__steps {
  position: relative;
  margin-top: 2rem;
}

/* Vertical accent line */
.process__line {
  position: absolute;
  left: 54px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.06);
}
.process__line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--color-accent-muted), var(--color-accent-muted));
  border-radius: 2px;
  transition: height 1.5s var(--ease-premium);
}
.process__line-fill.is-visible { height: 100%; }

/* Each step row */
.process__step {
  display: grid;
  grid-template-columns: 110px auto 1fr;
  gap: 0 2rem;
  align-items: start;
  padding: 2.5rem 0;
  position: relative;
}
.process__step:not(:last-child) {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* Big number — uses the same green as the hero headline */
.process__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--color-accent-muted);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: right;
  padding-right: 1.5rem;
}

/* Dot on the line */
.process__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent-muted);
  border: 3px solid var(--color-bg-light);
  box-shadow: 0 0 0 2px var(--color-accent-muted);
  position: relative;
  top: 0.75rem;
  z-index: 1;
}

/* Content */
.process__body { padding-top: 0.25rem; }

.process__time {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-bg-dark);
  background: var(--color-accent-muted);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.process__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 800;
  color: var(--color-text-on-light);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.process__body p {
  color: var(--color-muted);
  line-height: 1.6;
  font-weight: 300;
  font-size: 0.85rem;
  max-width: 400px;
}

/* =========================================
   PRODUCT EXPLORER — Interactive gallery
   ========================================= */
.produkte { padding: var(--section-pad) 0; background: var(--color-bg-light); }

.explorer {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  min-height: 450px;
}

/* Left — product list */
.explorer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.explorer__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  background: white;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
  text-align: left;
}
.explorer__item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f4ed;
  flex-shrink: 0;
}
.explorer__item span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-on-light);
}
.explorer__item:hover {
  border-color: rgba(168,204,0,0.3);
  background: rgba(210,255,0,0.04);
}
.explorer__item.active {
  border-color: var(--color-accent);
  background: rgba(210,255,0,0.08);
  box-shadow: 0 2px 12px rgba(210,255,0,0.1);
}

/* Right — preview */
.explorer__preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0efe9, #e8e7e0);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.explorer__img {
  width: 100%;
  max-width: 320px;
  height: 320px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.explorer__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text-on-light);
  margin-top: 1rem;
  letter-spacing: -0.01em;
}

.explorer__desc {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 300;
  margin-top: 0.25rem;
}

/* Color swatches */
.explorer__colors {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.explorer__color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
  position: relative;
}
.explorer__color:hover {
  transform: scale(1.15);
}
.explorer__color.active {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(210,255,0,0.25);
}

/* =========================================
   STARTER-KIT PAKETE
   ========================================= */
.pakete-section {
  padding: calc(var(--section-pad) + 2rem) 0 var(--section-pad);
  background: var(--color-bg-dark);
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
  margin-top: -1px;
}

.pakete__sub { color: var(--color-muted); margin-top: -1rem; margin-bottom: 2.5rem; font-size: 1rem; font-weight: 300; }

.pakete-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.paket-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
  position: relative;
}
.paket-card:hover {
  border-color: rgba(210,255,0,0.2);
  transform: translateY(-4px);
}

/* Featured card */
.paket-card--featured {
  border-color: var(--color-accent);
  background: rgba(210,255,0,0.06);
}
.paket-card__label {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.paket-card__header { margin-bottom: 1.5rem; }

.paket-card__badge {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.paket-card__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-on-dark);
  margin-top: 0.25rem;
}

.paket-card__team {
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
  font-weight: 300;
}

.paket-card__list {
  list-style: none;
  flex: 1;
  margin-bottom: 1.25rem;
}
.paket-card__list li {
  font-size: 0.8rem;
  color: var(--color-text-on-dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 300;
}
.paket-card__list li:last-child { border-bottom: none; }

.paket-card__size {
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.paket-card__footer { margin-top: auto; }

.paket-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-on-dark);
  display: block;
  margin-bottom: 0.75rem;
}

/* =========================================
   ANFRAGE
   ========================================= */
.anfrage-intro {
  padding: var(--section-pad) 0;
  background: #0a1226;
  text-align: center;
}

.anfrage { padding: var(--section-pad) 0; background: var(--color-bg-light); }

.anfrage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.anfrage__desc { color: var(--color-muted); line-height: 1.7; margin-bottom: 2.5rem; max-width: 380px; font-weight: 300; }
.anfrage__trust { display: flex; flex-direction: column; gap: 0.75rem; }
.anfrage__trust-item { font-family: var(--font-display); font-size: 0.7rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }

.anfrage__form { background: white; padding: 2.5rem; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-family: var(--font-display); font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-muted); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.875rem 1rem; border: 1.5px solid #e0e0d8; border-radius: var(--radius); font-size: 0.9rem; color: var(--color-text-on-light); background: #fafaf7; transition: border-color 0.3s, box-shadow 0.3s; outline: none; font-weight: 300; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(210,255,0,0.12); }
.form-group textarea { resize: vertical; }
.form-hint { text-align: center; font-size: 0.7rem; color: var(--color-muted); margin-top: 1rem; font-weight: 300; }

/* =========================================
   TRUST
   ========================================= */
.trust {
  padding: var(--section-pad) 0; background: var(--color-bg-dark); text-align: center;
  position: relative;
}
.trust::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.trust-point {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-point__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--color-accent);
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
}

.trust-point__unit {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-on-dark);
  display: block;
  margin-top: 0.5rem;
}

.trust-point__line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--color-accent), transparent);
  margin: 1rem auto;
}

.trust-point p {
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.5;
  font-weight: 300;
}

/* =========================================
   FOOTER
   ========================================= */
.footer { padding: 1.25rem 0; background: #0a1226; }
.footer__tagline { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--color-text-on-dark); text-align: center; margin-bottom: 2rem; line-height: 1.15; letter-spacing: -0.02em; }
.footer__cta { text-align: center; margin-bottom: 2.5rem; }

.footer__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.7rem; color: var(--color-muted); font-weight: 300;
}
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { font-size: 0.7rem; color: var(--color-muted); transition: color 0.3s; font-weight: 300; }
.footer__links a:hover { color: var(--color-text-on-dark); }

/* =========================================
   ANIMATIONS — Premium, not cheap fades
   ========================================= */

/* Clip reveal: text revealed left-to-right */
[data-reveal="clip"] {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease-premium);
}
[data-reveal="clip"].is-visible { clip-path: inset(0 0% 0 0); }

/* Fade reveal: stronger initial offset, Lando-style */
[data-reveal="fade"] {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal="fade"].is-visible { opacity: 1; transform: translateY(0); }

/* Slide reveal: from left */
[data-reveal="slide"] {
  opacity: 0; transform: translateX(-40px);
  transition: opacity var(--duration) var(--ease-premium), transform var(--duration) var(--ease-premium);
}
[data-reveal="slide"].is-visible { opacity: 1; transform: translateX(0); }

/* Scale reveal: grows in */
[data-reveal="scale"] {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium);
}
[data-reveal="scale"].is-visible { opacity: 1; transform: scale(1); }

/* Hero entrance — staggered, with custom timing */
[data-reveal="hero"] {
  opacity: 0;
  transform: translateY(40px);
}
[data-reveal="hero"].is-visible {
  animation: heroIn 1s var(--ease-out) forwards;
}
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* Statement lines — individual reveals with translateX + clip */
.statement__line {
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease-premium);
}
.statement__line.is-visible { clip-path: inset(0 0% 0 0); }

/* "Anspruch." slides in from right and snaps into place */
.statement__slide {
  display: inline-block;
  transform: translateX(120px);
  opacity: 0;
  transition: transform 0.8s var(--ease-premium), opacity 0.6s ease;
}
[data-reveal="slide-right"].is-visible {
  transform: translateX(0);
  opacity: 1;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .hero__visual { max-width: 50%; margin: 0 auto; }
  .hero__content { flex-direction: column; }
  .hero__mini-fan { display: none; }
  .hero__headline h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero__bottom { flex-direction: column; gap: 2rem; }
  .hero__bottom-right { gap: 2rem; }
  .process__step { grid-template-columns: 70px auto 1fr; gap: 0 1rem; }
  .process__num { font-size: 2.5rem; }
  .process__line { left: 34px; }
  .pakete-grid { grid-template-columns: repeat(2, 1fr); }
  .pakete__sub { font-size: 0.85rem; }
  .anfrage__grid { grid-template-columns: 1fr; gap: 3rem; }
  .explorer { grid-template-columns: 1fr; }
  .explorer__list { flex-direction: row; overflow-x: auto; }
  .explorer__item { flex-shrink: 0; }
  .lifestyle__img { background-attachment: scroll; }
  .fan__card[data-index="4"] { transform: rotate(12deg) translateX(150px); }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .trust-points { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  /* Hero — layered: polo behind text */
  .hero { min-height: 100vh; padding: 2rem 1.5rem 1.5rem; position: relative; }
  .hero__content { flex-direction: column; position: relative; z-index: 2; }
  .hero__text { max-width: 100%; }
  .hero__visual {
    position: absolute;
    right: 5%;
    top: 20%;
    max-width: 45%;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    margin: 0;
  }
  .hero__visual-glow { display: none; }
  .hero__img { filter: none; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn-primary, .hero__cta .btn-ghost { width: 100%; justify-content: center; }
  .hero__scroll { display: none; }
  .nav .btn-primary { display: none; }
  .nav__links { display: none; }
  .nav__menu { display: block; }
  .nav__brand-name { font-size: 1.1rem !important; }
  .nav { padding: 0.85rem 1rem; }
  .nav__brand-sub { font-size: 0.45rem; }

  /* Cert-Bar */
  .cert-bar { padding: 1.5rem 1rem; }
  .cert-bar__inner { flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
  .cert-bar__label { width: 100%; text-align: center; margin-right: 0; margin-bottom: 0.25rem; }
  .cert-logo { height: 30px; }

  /* Statement */
  .statement-marquee { padding: 2rem 0 0.75rem; }
  .statement__text { font-size: clamp(1.5rem, 7vw, 2.5rem); }

  /* Process */
  .process__step { grid-template-columns: 50px auto 1fr; gap: 0 0.75rem; padding: 1.5rem 0; }
  .process__num { font-size: 2rem; padding-right: 0.5rem; }
  .process__line { left: 25px; }
  .process__dot { width: 10px; height: 10px; }

  /* Lifestyle */
  .lifestyle__img { height: 35vh; min-height: 250px; background-attachment: scroll; background-position: center 40%; background-size: 150% auto; }
  .lifestyle__text { font-size: 1.3rem; }

  /* Explorer */
  .explorer { grid-template-columns: 1fr; gap: 1rem; }
  .explorer__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  .explorer__item { flex-shrink: 0; padding: 0.5rem 0.6rem; justify-content: center; }
  .explorer__item img { width: 28px; height: 28px; }
  .explorer__item span { font-size: 0.6rem; }
  .explorer__img { max-width: 220px; height: 220px; }
  .explorer__preview { padding: 1.5rem; }
  .explorer__color { width: 28px; height: 28px; }

  /* Pakete — 1 Spalte auf Mobile */
  .pakete-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pakete-section { padding: calc(var(--section-pad) + 1rem) 0 var(--section-pad); }
  .paket-card { padding: 1.5rem 1.25rem 1.25rem; }
  .paket-card__badge { font-size: 2rem; }

  /* Anfrage */
  .anfrage__grid { grid-template-columns: 1fr; gap: 2rem; }
  .anfrage__form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__row { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer__links { justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

  /* Anfrage-Intro */
  .anfrage-intro { padding: 3rem 0; }
  .footer__tagline { font-size: 1.3rem; }
}
