/* ============================================
   KIOS KIOSK – Main Stylesheet
   ============================================ */

/* Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', sans-serif;
  background-color: #0A0A0A;
  color: #E5E5E5;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; margin: 0; }
p { margin: 0; }
a { transition: color 0.2s ease; }
address { font-style: normal; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }

/* ============================================
   Navbar
   ============================================ */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar__logo-mark {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar__logo-mark span {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  color: #000;
}
.navbar__logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link {
  color: #666;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: #fff; }

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  line-height: 1;
}
.btn-primary:hover {
  background: #E5E5E5;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}
.btn-primary--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ccc;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
  line-height: 1;
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 14px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }

/* Mobile menu toggle */
.navbar__hamburger {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.99);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu a {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #ccc; }

/* ============================================
   Utilities
   ============================================ */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #777777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grid-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(255, 255, 255, 0.06) 0%, transparent 70%),
    #0A0A0A;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #777;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.2;
}
.hero__scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: float 2s ease-in-out infinite;
}

/* ============================================
   Ticker
   ============================================ */
.ticker-wrap {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.ticker {
  display: flex;
  animation: ticker 24s linear infinite;
  white-space: nowrap;
}
.ticker__item {
  flex-shrink: 0;
  padding: 12px 36px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
  background: #111111;
}
.stats-bar__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.stat-item:last-child { border-right: none; }
.stat-item__value {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-item__label {
  color: #444;
  font-size: 0.85rem;
  margin-top: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   Sections – shared layout
   ============================================ */
.section {
  padding: 100px 24px;
}
.section--dark { background: #0D0D0D; }
.section--mid { background: #111111; }
.section__container {
  max-width: 1100px;
  margin: 0 auto;
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header .section-label { display: block; }

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__body p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 20px;
}
.rating-card-stack {
  position: relative;
  height: 360px;
}
.rating-card-stack__shadow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a, #111);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  transform: rotate(3deg) translateY(8px);
}
.rating-card {
  position: absolute;
  inset: 0;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
}
.rating-card__stars { display: flex; gap: 4px; }
.rating-card__score {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
}
.rating-card__label {
  color: #555;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.6;
}
.rating-card__label span { color: #444; }
.rating-card__tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 24px;
  text-align: center;
  margin-top: 8px;
}
.rating-card__tag-title {
  color: #bbb;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.rating-card__tag-sub { color: #444; font-size: 0.75rem; margin-top: 4px; }

/* ============================================
   Product Cards
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.product-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
  pointer-events: none;
}
.product-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.product-card:hover::before { opacity: 1; }
.product-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s ease;
}
.product-card:hover .product-card__icon { background: rgba(255, 255, 255, 0.1); }
.product-card__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #e5e5e5;
}
.product-card__desc { color: #555; font-size: 0.875rem; line-height: 1.6; }
.product-card__age {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-block;
  font-size: 0.7rem;
  color: #777;
  font-weight: 600;
}

/* ============================================
   Why Cards
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.why-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.why-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}
.why-card__number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  pointer-events: none;
}
.why-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-card__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #e5e5e5;
}
.why-card__desc { color: #555; font-size: 0.9rem; line-height: 1.7; }

/* ============================================
   Opening Hours
   ============================================ */
.hours-section .section__container { max-width: 700px; }
.hours-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255, 255, 255, 0.02); }
.hours-row.today { background: rgba(255, 255, 255, 0.05); border-bottom-color: rgba(255, 255, 255, 0.08); }
.hours-row.today .hours-row__day { color: #fff; font-weight: 700; }
.hours-row__day { font-weight: 500; color: #ccc; }
.hours-row__day--closed { color: #444; }
.hours-row__time { color: #888; }
.hours-row__time--highlight { color: #fff; font-weight: 600; }
.hours-row__time--closed { color: #444; }
.hours-note {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 0.85rem;
}

/* ============================================
   Location
   ============================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover { border-color: rgba(255, 255, 255, 0.2); }
.contact-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__label { font-weight: 600; font-size: 0.9rem; color: #ccc; margin-bottom: 4px; }
.contact-card__value { color: #555; font-size: 0.85rem; }
.contact-card__value--highlight { color: #fff; font-weight: 600; }
.map-frame {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.8) contrast(1.1);
}

/* ============================================
   FAQ
   ============================================ */
.faq-section .section__container { max-width: 720px; }
.faq-list { margin-top: 0; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.06); overflow: hidden; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  color: #ccc;
  transition: color 0.2s ease;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Work Sans', sans-serif;
}
.faq-question:hover { color: #fff; }
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  color: #666;
}
.faq-item.open .faq-icon {
  background: #fff;
  border-color: #fff;
  color: #000;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer strong { color: #ccc; }
.faq-answer a { color: #ccc; }
.faq-answer a:hover { color: #fff; }

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  padding: 80px 24px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-banner__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-banner__text {
  color: #555;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 24px 32px;
}
.footer__inner { max-width: 1100px; margin: 0 auto; }
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer__logo-mark {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo-mark span { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 0.75rem; color: #000; }
.footer__logo-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; }
.footer__address { color: #444; font-size: 0.85rem; line-height: 1.8; max-width: 220px; }
.footer__address a { color: #444; text-decoration: none; }
.footer__address a:hover { color: #fff; }
.footer__cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer__col-title {
  color: #2a2a2a;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a {
  color: #444;
  font-size: 0.875rem;
  text-decoration: none;
}
.footer__col-links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}
.footer__copy { color: #2a2a2a; font-size: 0.8rem; }
.footer__rating { color: #333; font-size: 0.8rem; }

/* ============================================
   Legal pages (impressum, datenschutz)
   ============================================ */
.legal-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}
.legal-page-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: #555; font-weight: 600; margin-bottom: 16px; }
.legal-page-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.legal-page-date { color: #444; font-size: 0.85rem; margin-bottom: 48px; }
.legal-section { margin-bottom: 48px; }
.legal-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.legal-section h3 { font-size: 0.95rem; font-weight: 600; color: #aaa; margin: 20px 0 8px; }
.legal-section p { color: #666; font-size: 0.95rem; line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { color: #666; font-size: 0.95rem; line-height: 1.8; margin: 8px 0 12px 20px; }
.legal-section li { margin-bottom: 4px; }
.legal-section a { color: #777; }
.legal-section a:hover { color: #fff; }
.legal-section strong { color: #ccc; }
.legal-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 16px;
  color: #555;
  font-size: 0.875rem;
  font-style: italic;
  display: inline-block;
  margin: 4px 0;
}
.legal-info-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 8px;
}
.legal-info-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: flex-start;
}
.legal-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.legal-info-label {
  color: #444;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  min-width: 120px;
  padding-top: 2px;
}
.legal-info-value { color: #888; font-size: 0.95rem; }
.legal-highlight-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 16px 0;
}
.legal-highlight-box p { margin: 0; color: #555; font-size: 0.875rem; }
.legal-footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.legal-footer p { color: #2a2a2a; font-size: 0.8rem; }
.legal-footer a { color: #2a2a2a; text-decoration: none; }
.legal-footer a:hover { color: #666; }

/* ============================================
   Animations
   ============================================ */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .location-grid { grid-template-columns: 1fr !important; }
  .footer__top { flex-direction: column; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .stat-item { padding: 24px 12px; }
  .stat-item__value { font-size: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker { animation: none; }
  .product-card:hover { transform: none; }
  .hero__scroll-line { animation: none; }
  .hero__badge-dot { animation: none; }
}
