@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #050814;
  --bg-soft: #0b1020;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --text: #eef2ff;
  --muted: rgba(238, 242, 255, 0.7);
  --accent: #7c5cff;
  --accent-2: #22d3ee;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.08), transparent 30%),
    radial-gradient(circle at left, rgba(124, 92, 255, 0.10), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  overflow-x: hidden;
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

/* LINKS */
a {
  text-decoration: none;
  color: inherit;
}

/* LAYOUT */
.page {
  padding-bottom: 20px;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* BUTTON OBEN */
.top-left-btn {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: var(--shadow);
  transition: 0.2s;
  z-index: 999;
}

.top-left-btn:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero {
  padding: 32px 0 12px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  background: var(--card);
}

h1 {
  margin: 10px 0 6px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.lead {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
}

.stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* CARDS */
.panel,
.card,
.package-card,
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.panel-highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* GRID */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: center;
}

.overview {
  margin-top: 8px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}

/* TEXT */
h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

/* LISTE */
.checklist {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  list-style: none;
}

.checklist li {
  padding-left: 20px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

/* IMAGE */
.image-panel {
  cursor: zoom-in;
  overflow: hidden;
}

.zoomable-image {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 0.25s ease;
}

.image-panel:hover .zoomable-image {
  transform: scale(1.02);
}

/* SECTION */
.section-heading {
  margin-bottom: 12px;
}

.section-kicker {
  font-size: 13px;
  color: var(--muted);
}

/* IMAGE MODAL (FULLSCREEN) */
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 15, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2000;
}

.image-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.image-modal img {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  border-radius: 0;
}

/* CLOSE BUTTON */
.image-modal-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 2100;
  transition: transform 0.2s ease;
}

.image-modal-close:hover {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid,
  .overview-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }
}

@media (max-width: 500px) {
  .container {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 1.55rem;
  }

  .panel,
  .card {
    padding: 14px;
  }

  .image-modal img {
    width: 100vw;
    height: 100vh;
  }
}