/* Premium Presenters — styles.css v20260601b */

:root {
  /* Paleta original del sitio */
  --orange: #F25222;
  --orange-dark: #d94010;
  --navy: #1A2B4C;
  --navy-light: #253d6a;
  --yellow: #F1C40F;
  --bg: #ffffff;
  --bg-soft: #f2f5f7;
  --bg-softer: #FAFBFC;
  --text: #1A2B4C;
  --text-muted: #5a5a5a;
  --text-light: #8c8c8c;
  --border: #e1e8ed;
  --radius: 3px;
  --font: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.2; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--yellow); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.6); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-outline { border: 2px solid var(--orange); color: var(--orange); background: transparent; }
.btn-outline:hover { background: var(--orange); color: #fff; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(26,43,76,0.1); }
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo img { height: 38px; width: auto; }
.nav-brand {
  font-size: 1rem; font-weight: 700; color: var(--navy);
  letter-spacing: -0.01em; white-space: nowrap;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--navy);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.6rem 1.6rem; background: var(--orange); color: #fff;
  border-radius: var(--radius); transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); transition: all 0.3s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-size: 2rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.mobile-menu a:hover { color: var(--yellow); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
}
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(14,22,42,0.92) 0%,
    rgba(14,22,42,0.80) 42%,
    rgba(14,22,42,0.65) 68%,
    rgba(14,22,42,0.50) 100%
  );
}
/* Grain overlay */
.hero-bg-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  opacity: 0.35;
}
.hero-left {
  position: relative; z-index: 1;
  padding: 5rem 5vw 4rem;
  padding-top: 52px;
  display: flex; flex-direction: column; gap: 2rem;
  width: 75%;
  max-width: 980px;
  min-height: 100svh;
  justify-content: flex-start;
}
/* Hero text — CSS entrance animation, no GSAP dependency */
.hero-tagline { animation: heroFade 0.7s ease 0.1s both; }
.hero-h1      { animation: heroSlide 0.9s ease 0.2s both; }
.hero-sub     { animation: heroFade 0.8s ease 0.5s both; }
.hero-ctas    { animation: heroFade 0.8s ease 0.7s both; }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroSlide {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-tagline {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange);
}
/* Force hero h1 always ~2 lines, big impact */
.hero h1 {
  color: #ffffff;
  font-size: clamp(3rem, 6.5vw, 6rem);
  max-width: 15em;
  line-height: 1.08;
}
.hero-sub { font-size: 1.15rem; color: #ffffff; max-width: 480px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right { display: none; }
.hero-mods-btn {
  border: 2px solid rgba(255,255,255,0.7); color: #fff; background: rgba(255,255,255,0.10);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.03em;
}
.hero-mods-btn:hover { background: rgba(255,255,255,0.20); color: #fff; }

/* ── CITIES ── */
.cities {
  background: var(--navy); overflow: hidden;
  padding: 1.6rem 0;
}
.cities-track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.cities-track span {
  font-size: 1rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); flex-shrink: 0;
}
.cities-track span.sep { color: var(--orange); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
section { padding: 8rem 5vw; }

/* ── STATS ROW ── */
.icon-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.icon-stat {
  flex: 1; padding: 5rem 3rem; text-align: center;
  border-right: 1px solid var(--border);
}
.icon-stat:last-child { border-right: none; }
.icon-stat-num {
  font-size: clamp(4rem, 8vw, 7rem); font-weight: 800; color: var(--orange);
  line-height: 1; display: block; letter-spacing: -0.03em;
}
.icon-stat-label {
  font-size: 1rem; font-weight: 500; color: var(--navy);
  margin-top: 0.8rem; display: block; line-height: 1.4;
}
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.2rem;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ── INTRO SECTION ── */
.intro { background: var(--bg-softer); }
.intro-heading { color: var(--navy); margin: 1.2rem 0 1.4rem; }
.intro-lead { color: var(--text-muted); font-size: 1.05rem; max-width: 640px; margin-bottom: 3.5rem; }

.intro-bottom {
  display: flex; flex-direction: column; gap: 3.5rem;
}
.intro-quote-col {
  display: flex; flex-direction: column; gap: 2rem;
  align-items: flex-start; max-width: 640px;
}
.intro-image { display: flex; justify-content: center; }
.intro-quote {
  font-size: clamp(1.15rem, 2vw, 1.45rem); font-style: italic; color: var(--navy);
  border-left: 4px solid var(--orange); padding-left: 1.6rem; line-height: 1.6;
}
.intro-quote strong {
  display: block; font-style: normal; font-size: 0.85rem;
  font-weight: 600; margin-top: 0.8rem; color: var(--text-muted);
  letter-spacing: 0.05em;
}
.intro-image img { width: 100%; max-width: 820px; max-height: 60vh; object-fit: cover; object-position: center top; border-radius: 2px; }

/* ── WARNING SECTION ── */
.warning { background: var(--navy); color: #fff; padding: 7rem 5vw; }
.warning-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; gap: 1.8rem;
}
.warning-label {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow);
}
.warning-title-big {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 800; color: #fff;
  line-height: 1.08; letter-spacing: -0.03em;
}
.warning-title-small {
  font-size: clamp(1rem, 1.8vw, 1.3rem); font-weight: 400;
  color: rgba(255,255,255,0.72); line-height: 1.65; max-width: 580px; margin: 0 auto;
}
.warning-quote {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem); font-style: italic; color: var(--yellow);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 1.8rem 0; line-height: 1.5; min-height: 4rem;
}
.typewriter-text::after {
  content: '|'; animation: blink 0.75s step-end infinite; color: var(--orange);
}
.typewriter-text.done::after { display: none; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.warning-body {
  color: rgba(255,255,255,0.6); font-size: 0.95rem;
  max-width: 520px; margin: 0 auto;
}
.warning-right { display: none; }
.warning-left { width: 100%; }

/* ── PROCESS ── */
.process { background: var(--bg-soft); }
.process h2 { margin-bottom: 3.5rem; color: var(--navy); }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.process-step {
  background: #fff; padding: 2.8rem 2.2rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  position: relative;
}
.step-num {
  font-size: 4rem; font-weight: 800; line-height: 1;
  color: var(--orange); opacity: 0.15; margin-bottom: 1.2rem;
}
.process-step h4 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.8rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }

/* ── ABOUT ── */
.about {
  background: var(--bg);
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-image img { width: 100%; border-radius: 2px; }
.about-text h2 { margin-bottom: 1.5rem; color: var(--navy); }
.about-text p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.2rem; }
.about-stat {
  display: inline-flex; align-items: baseline; gap: 0.5rem;
  margin: 1.5rem 0;
}
.about-stat-num {
  font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: var(--orange); line-height: 1;
}
.about-stat-label { font-size: 0.9rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── BENEFITS ── */
.benefits { background: var(--navy); color: #fff; }
.benefits-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.benefits-text h2 { color: #fff; margin-bottom: 1rem; }
.benefits-text .section-label { color: var(--yellow); }
.benefits-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  font-size: 1rem; color: rgba(255,255,255,0.85);
}
.benefits-list li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; margin-top: 0.5rem;
}
.benefits-image img { width: 100%; border-radius: 2px; }

/* ── PDF STRIP ── */
.pdf-strip {
  position: relative; overflow: hidden;
  background: var(--navy); color: #fff;
  min-height: 340px; display: flex; align-items: center;
}
.pdf-bg {
  position: absolute; inset: 0; z-index: 0;
}
.pdf-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.18;
}
.pdf-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 4rem; padding: 0 5vw; width: 100%; text-align: center;
}
.pdf-marie {
  flex-shrink: 0; width: 220px; height: 340px; overflow: hidden;
  align-self: flex-end;
}
.pdf-marie img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  mix-blend-mode: luminosity; filter: brightness(1.1);
}
.pdf-left { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.pdf-icon { width: 60px; flex-shrink: 0; filter: brightness(0) invert(1); }
.pdf-copy { text-align: center; }
.pdf-copy h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); color: #fff; margin-bottom: 0.5rem; font-weight: 700; white-space: nowrap; }
.pdf-copy p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: none; white-space: nowrap; }
.final-cta p { max-width: 640px; margin: 0 auto; }
.btn-pdf { background: #0096A2; color: #fff; border: none; white-space: nowrap; font-weight: 700; }
.btn-pdf:hover { background: #007a85; }

/* ── FINAL CTA ── */
.final-cta { background: var(--navy); color: #fff; text-align: center; }
.final-cta h2 { color: #fff; margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2.5rem; }

/* ── MODERATOREN PAGE ── */
.page-header {
  background: var(--navy); color: #fff;
  padding: 10rem 5vw 6rem;
}
.page-header h1 { color: #fff; margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; }

.mods-section { padding: 5rem 5vw 8rem; }
.mods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

.mod-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: #fff;
  transition: box-shadow 0.25s, transform 0.25s;
}
.mod-card:hover { box-shadow: 0 12px 40px rgba(26,43,76,0.12); transform: translateY(-3px); }
.mod-img { aspect-ratio: 3/4; overflow: hidden; }
.mod-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s; }
.mod-card:hover .mod-img img { transform: scale(1.04); }
.mod-body { padding: 2rem; }
.mod-body h3 { font-size: 1.35rem; color: var(--navy); margin-bottom: 0.3rem; }
.mod-role { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 1.2rem; }
.mod-body p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 1rem; }
.mod-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.mod-tag {
  font-size: 0.72rem; padding: 0.3rem 0.85rem;
  background: transparent; border: 1px solid #0096A2;
  color: #0096A2; border-radius: 3px;
  font-weight: 500;
}
.mod-lang { font-size: 0.82rem; color: var(--navy); font-weight: 500; }

/* ── KONTAKT ── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 6rem; padding: 10rem 5vw 7rem; align-items: start;
  max-width: 1200px; margin: 0 auto;
  flex: 1;
}
.contact-info h1 { color: var(--navy); margin-bottom: 1.2rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-details a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.2s; }
.contact-details a:hover { color: var(--orange); }

.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; }
.form-group input,
.form-group textarea {
  background: var(--bg-softer); border: 1px solid var(--border);
  color: var(--text); padding: 0.9rem 1rem;
  font-family: var(--font); font-size: 0.95rem;
  border-radius: var(--radius); outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(242,82,34,0.2);
  border-radius: var(--radius);
  text-align: center;
  animation: successFadeIn 0.5s ease both;
}
.form-success.visible {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.success-icon svg {
  width: 64px; height: 64px;
}
.success-circle {
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: drawCircle 0.6s ease 0.1s forwards;
}
.success-check {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: drawCheck 0.4s ease 0.65s forwards;
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.success-text strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.success-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ── IMPRESSUM ── */
.legal { padding: 10rem 5vw 7rem; max-width: 800px; margin: 0 auto; }
.legal h1 { color: var(--navy); margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.4rem; color: var(--navy); margin: 2.8rem 0 0.8rem; }
.legal p { color: var(--text-muted); margin-bottom: 1rem; }
.legal a { color: var(--orange); }
.legal a:hover { text-decoration: underline; }
.legal hr { border: none; border-top: 2px solid var(--border); margin: 4rem 0; }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: 2.5rem 5vw;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
  position: relative;
}
.footer-logo img { height: 38px; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.78rem; text-align: center; }
@media (min-width: 769px) {
  .footer-copy { position: absolute; left: 50%; transform: translateX(-50%); }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 5vw 5rem; max-width: 680px; }
  .intro-inner, .warning-inner, .about-inner, .benefits-inner { grid-template-columns: 1fr; gap: 3rem; }
  .mods-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .process-steps { grid-template-columns: 1fr; }
  .mods-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; padding-top: 8rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  section { padding: 5rem 5vw; }
  .pdf-inner { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
