@charset "UTF-8";
/* ============================================================
   CIRO – European Trade Fair Reports Taiwan
   Eigenständiges CSS – keine externen Abhängigkeiten
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@font-face {
  font-family: MassimoGrafia;
  src: url('../fonts/MassimoGrafia-Bold.woff2') format('woff2'),
       url('../fonts/MassimoGrafia-Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: MassimoGrafia;
  src: url('../fonts/MassimoGrafia-Medium.woff2') format('woff2'),
       url('../fonts/MassimoGrafia-Medium.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: MassimoGrafia;
  src: url('../fonts/MassimoGrafia-Regular.woff2') format('woff2'),
       url('../fonts/MassimoGrafia-Regular.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: MassimoGrafia;
  src: url('../fonts/MassimoGrafia-Light.woff2') format('woff2'),
       url('../fonts/MassimoGrafia-Light.woff') format('woff');
  font-weight: 100;
  font-style: normal;
}

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:        #f9cbce;
  --blue:      #0129d9;
  --black:     #000000;
  --white:     #ffffff;
  --max-w:     1200px;
  --pad-h:     40px;
  --font:      MassimoGrafia, sans-serif;
}

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

html, body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 18px;
  background-color: var(--bg);
  color: var(--blue);
  width: 100%;
  height: auto;
  font-feature-settings: 'calt' 0;
}

a { color: var(--blue); text-decoration: none; }
a:hover { opacity: 0.7; }

/* ── Container ─────────────────────────────────────────────── */
.lp-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* ============================================================
   HEADER
   ============================================================ */
#lp-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg);

  padding: 16px 0;
}

#lp-header .lp-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.header-logo img {
  display: block;
  width: 120px;
  height: auto;
}

/* Nav */
.header-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

.header-nav a {
  font-family: var(--font);
  font-weight: 300;
  font-size: 15px;
  color: var(--blue);
  letter-spacing: 0.02em;
}

/* Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Lang switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 300;
}
.lang-switch .sep { opacity: 0.35; }
.lang-switch a.active { font-weight: 600; border-bottom: 1px solid var(--blue); }

/* CTA */
.btn-cta {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--white);
  background-color: var(--blue);
  border: 2px solid var(--blue);
  padding: 9px 22px;
  transition: background-color 0.2s, color 0.2s;
}
.btn-cta:hover {
  background-color: transparent;
  color: var(--blue);
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .header-nav { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
#lp-hero {
  padding: 100px 0 80px;
  background-color: var(--bg);
}

#lp-hero .lp-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Text side */
.hero-text {
  flex: 1 1 55%;
}

.hero-text h1 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 1.05;
  color: var(--blue);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

.hero-text .subheadline {
  font-family: var(--font);
  font-weight: 400;
  font-feature-settings: 'calt' 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--blue);
  max-width: 560px;
}

/* Image side */
.hero-image {
  flex: 0 0 32%;
  /* Auskommentieren bis Bild entschieden:
  display: none;
  */
}

.hero-image video {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  #lp-hero .lp-wrap {
    flex-direction: column-reverse;
    gap: 48px;
  }
  .hero-text { flex: none; width: 100%; }
  .hero-image { flex: none; width: 100%; }
}

/* Section Label – global für alle Sections */
.section-label {
  font-family: var(--font) !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 24px !important;
  font-feature-settings: 'calt' 0 !important;
  display: block !important;
}

#lp-opening .section-label,
#lp-intelligence .section-label,
#lp-fairs .section-label {
  font-family: var(--font) !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 24px !important;
  font-feature-settings: 'calt' 0 !important;
  display: block;
}

#lp-opening .section-label {
  color: var(--bg) !important;
}

#lp-intelligence .section-label {
  color: var(--blue) !important;
}

#lp-fairs .section-label {
  color: var(--bg) !important;
}

/* ============================================================
   SECTION 2 – OPENING
   Blauer Hintergrund, rosa Text
   ============================================================ */
#lp-opening {
  background-color: var(--blue);
  padding: 120px 0;
}

#lp-opening h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--bg);
  letter-spacing: -0.01em;
  margin-bottom: 60px;
  font-feature-settings: 'calt' 0;
}

#lp-opening p {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6;
  color: var(--bg);
  max-width: 720px;
  font-feature-settings: 'calt' 0;
}

@media (max-width: 768px) {
  #lp-opening { padding: 80px 0; }
  #lp-opening h2 { margin-bottom: 40px; }
}

/* ============================================================
   SECTION 3 – INTELLIGENCE
   Rosa Hintergrund, blauer Text
   ============================================================ */
#lp-intelligence {
  background-color: var(--bg);
  padding: 120px 0;
}

#lp-intelligence h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 60px;
  font-feature-settings: 'calt' 0;
}

#lp-intelligence p {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6;
  color: var(--blue);
  max-width: 720px;
  font-feature-settings: 'calt' 0;
}

@media (max-width: 768px) {
  #lp-intelligence { padding: 80px 0; }
  #lp-intelligence h2 { margin-bottom: 40px; }
}

/* ============================================================
   SECTION 4 – CORE FAIRS
   Blauer Hintergrund, rosa Karten, blauer Text
   ============================================================ */
#lp-fairs {
  background-color: var(--blue);
  padding: 120px 0;
}

#lp-fairs .section-label {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 24px;
  font-feature-settings: 'calt' 0;
}

#lp-fairs h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--bg);
  letter-spacing: -0.01em;
  margin-bottom: 80px;
  font-feature-settings: 'calt' 0;
}

/* Grid */
.fairs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Card */
.fair-card {
  background-color: var(--bg);
  padding: 48px 40px 56px;
}

.fair-card h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 8px;
  font-feature-settings: 'calt' 0;
}

.fair-card .fair-location {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  color: var(--blue);
  opacity: 0.6;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  font-feature-settings: 'calt' 0;
}

.fair-card p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--blue);
  font-feature-settings: 'calt' 0;
}

@media (max-width: 900px) {
  .fairs-grid { grid-template-columns: 1fr; }
  #lp-fairs { padding: 80px 0; }
  #lp-fairs h2 { margin-bottom: 48px; }
}

/* ============================================================
   SECTION 5 – ADDITIONAL FAIRS
   Gleiche Farben wie Section 4, kompaktere Karten
   ============================================================ */
#lp-additional {
  background-color: var(--blue);
  padding: 0 0 120px;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.additional-card {
  background-color: var(--bg);
  padding: 28px 28px 36px;
}

.additional-card h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  color: var(--blue);
  margin-bottom: 4px;
  font-feature-settings: 'calt' 0;
}

.additional-card .fair-location {
  font-family: var(--font);
  font-weight: 400;
  font-size: 12px;
  color: var(--blue);
  opacity: 0.6;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  font-feature-settings: 'calt' 0;
}

.additional-card p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--blue);
  font-feature-settings: 'calt' 0;
}

@media (max-width: 1024px) {
  .additional-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .additional-grid { grid-template-columns: 1fr; }
  #lp-additional { padding-bottom: 80px; }
}

#lp-additional .section-label {
  color: var(--bg) !important;
}

#lp-additional h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--bg);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  font-feature-settings: 'calt' 0;
}

/* Links in Karten */
.fair-card h3 a,
.additional-card h3 a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 41, 217, 0.3);
  transition: border-color 0.2s;
}

.fair-card h3 a:hover,
.additional-card h3 a:hover {
  border-bottom-color: var(--blue);
  opacity: 1;
}

/* URL unter Karten-Text */
.fair-url {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(1, 41, 217, 0.4);
  letter-spacing: 0.02em;
  transition: border-color 0.2s;
}

.fair-url:hover {
  border-bottom-color: var(--blue);
  opacity: 1;
}

/* ============================================================
   SECTION 6 – SERVICES
   Rosa Hintergrund, blaue Karten, rosa Text
   ============================================================ */
#lp-services {
  background-color: var(--bg);
  padding: 120px 0;
}

#lp-services .section-label {
  color: var(--blue) !important;
}

#lp-services h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  font-feature-settings: 'calt' 0;
}

#lp-services .services-intro {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--blue);
  max-width: 720px;
  margin-bottom: 64px;
  font-feature-settings: 'calt' 0;
}

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

.service-card {
  background-color: transparent;
  border: 5px solid var(--blue);
  padding: 48px 40px 56px;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 24px;
  font-feature-settings: 'calt' 0;
}

.service-card hr {
  border: none;
  border-top: 1px solid rgba(1, 41, 217, 0.25);
  margin-bottom: 28px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card ul li {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--blue);
  padding-left: 24px;
  position: relative;
  font-feature-settings: 'calt' 0;
}

.service-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 22px;
  line-height: 1.2;
  color: var(--blue);
  opacity: 1;
}

.service-card .service-note {
  font-family: var(--font);
  font-weight: 400;
  font-size: 13px;
  color: var(--blue);
  opacity: 0.6;
  margin-top: 24px;
  font-feature-settings: 'calt' 0;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  #lp-services { padding: 80px 0; }
}


/* ============================================================
   SECTION 7 – WHAT YOU GET
   Blauer Hintergrund, rosa Text
   2-Spalten-Grid, jede Box: Zahl oben links + Titel + Text
   ============================================================ */
#lp-advantages {
  background-color: var(--blue);
  padding: 120px 0;
}

#lp-advantages .section-label {
  color: var(--bg) !important;
}

#lp-advantages h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--bg);
  letter-spacing: -0.01em;
  margin-bottom: 64px;
  font-feature-settings: 'calt' 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 5px solid var(--bg);
  border-left: 5px solid var(--bg);
}

.advantage-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 48px 48px 56px;
  border-bottom: 5px solid var(--bg);
  border-right: 5px solid var(--bg);
}

.advantage-number {
  font-family: var(--font);
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  color: var(--bg);
  font-feature-settings: 'calt' 0;
  flex-shrink: 0;
  width: 100px;
}

.advantage-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.advantage-item h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 14px;
  font-feature-settings: 'calt' 0;
  text-transform: uppercase;
}

.advantage-item p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--bg);
  font-feature-settings: 'calt' 0;
}

@media (max-width: 768px) {
  .advantages-grid { grid-template-columns: 1fr; }
  #lp-advantages { padding: 80px 0; }
}

/* ============================================================
   SECTION 8 – ABOUT
   Rosa Hintergrund, Text links, Bild rechts
   ============================================================ */
#lp-about {
  background-color: var(--bg);
  padding: 120px 0;
}

#lp-about .section-label {
  color: var(--blue) !important;
}

#lp-about .lp-wrap {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.about-text {
  flex: 1 1 55%;
}

#lp-about h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  font-feature-settings: 'calt' 0;
}

#lp-about p {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.6;
  color: var(--blue);
  font-feature-settings: 'calt' 0;
}

.about-image {
  flex: 0 0 36%;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  #lp-about .lp-wrap { flex-direction: column; gap: 48px; }
  .about-image { width: 100%; }
  #lp-about { padding: 80px 0; }
}

#lp-about .about-text p + p {
  margin-top: 24px;
}

/* ============================================================
   SECTION 9 – CONTACT / CTA
   Blauer Hintergrund, rosa Text, großer CTA
   ============================================================ */
#lp-contact {
  background-color: var(--blue);
  padding: 120px 0;
  text-align: center;
}

#lp-contact .section-label {
  color: var(--bg) !important;
  text-align: left;
}

#lp-contact h2 {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  color: var(--bg);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  font-feature-settings: 'calt' 0;
}

#lp-contact p {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6;
  color: var(--bg);
  margin-bottom: 56px;
  font-feature-settings: 'calt' 0;
}

.btn-contact {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--blue);
  background-color: var(--bg);
  border: 5px solid var(--bg);
  padding: 20px 56px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s;
  font-feature-settings: 'calt' 0;
}

.btn-contact:hover {
  background-color: transparent;
  color: var(--bg);
  opacity: 1;
}

@media (max-width: 768px) {
  #lp-contact { padding: 80px 0; }
}

/* Hero Link */
.hero-link {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  font-feature-settings: 'calt' 0;
  transition: opacity 0.2s;
}

.hero-link:hover {
  opacity: 0.6;
}

/* Section 3 – Reports mit Bild */
#lp-insights .lp-wrap--flex {
  display: flex;
  align-items: center;
  gap: 80px;
}

.insights-text {
  flex: 1 1 55%;
}

.insights-image {
  flex: 0 0 42%;
  overflow: hidden;
}

.insights-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  #lp-insights .lp-wrap--flex {
    flex-direction: column;
    gap: 48px;
  }
  .insights-image { width: 100%; }
}

#lp-insights h2 {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.1;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  font-feature-settings: 'calt' 0;
}

#lp-insights p {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6;
  color: var(--blue);
  font-feature-settings: 'calt' 0;
}

#lp-insights {
  padding: 120px 0;
}

.reports-list {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reports-list li {
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
  color: var(--blue);
  padding-left: 24px;
  position: relative;
  font-feature-settings: 'calt' 0;
}

.reports-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 22px;
  line-height: 1.2;
  color: var(--blue);
}

/* Rotierendes Kreis-Element */
.hero-video-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.hero-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

.rotating-badge {
  position: absolute;
  bottom: -40px;
  left: -80px;
  width: 200px;
  height: 200px;
  animation: rotate-cw 12s linear infinite;
  z-index: 10;
}

.rotating-badge svg {
  width: 100%;
  height: 100%;
}

@keyframes rotate-cw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ============================================================
   MOBILE – alle Anpassungen unter 768px
   ============================================================ */
html, body { overflow-x: hidden; }

.btn-short { display: none; }
.btn-full  { display: inline; }

@media (max-width: 768px) {

  /* Header */
  .header-logo img { width: 80px; }
  .btn-cta { padding: 6px 12px; font-size: 13px; }
  .btn-short { display: inline; }
  .btn-full  { display: none; }

  /* Hero */
  #lp-hero { padding: 20px 0 80px; }

  #lp-hero .lp-wrap {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .hero-text { flex: none; width: 100%; }
  .hero-image { flex: none; width: 100%; overflow: visible; }

  /* Video: kleiner, rechtsbündig */
  .hero-video-wrap {
    position: relative;
    width: 65%;
    float: right;
  }

  .hero-video-wrap video {
    width: 100%;
    display: block;
  }

  /* Badge: auf Video, unten rechts */
  .rotating-badge {
    display: block;
    width: 130px;
    height: 130px;
    bottom: -50px;
    left: auto;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .fair-card h3,
  .additional-card h3,
  .service-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .advantage-item {
    border-right: 5px solid var(--bg);
  }
}

@media (max-width: 768px) {
  #lp-advantages .lp-wrap {
    padding: 0 20px;
  }
  .advantages-grid {
    border: none;
  }
  .advantage-item {
    border: 5px solid var(--bg);
    margin-bottom: 16px;
  }
}

@media (max-width: 768px) {
  /* Advantage Items: kein Overflow, Zahl über Text */
  .advantage-item {
    flex-direction: column;
    padding: 32px 28px 40px;
    box-sizing: border-box;
    width: 100%;
  }
  .advantages-grid {
    width: 100%;
    box-sizing: border-box;
  }
  #lp-advantages {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  p, .service-card p, .services-intro {
    line-height: 1.2;
  }
}