/* ============================================
   MEMORIES FOTO & VIDEO — Apple-Style Design
   ============================================ */

:root {
  --red: #BF544C;
  --red-light: #D4605A;
  --red-soft: rgba(191, 84, 76, 0.08);
  --dark: #1d1d1f;
  --gray-1: #f5f5f7;
  --gray-2: #e8e8ed;
  --gray-3: #d2d2d7;
  --gray-4: #86868b;
  --gray-5: #6e6e73;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 18px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo .logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--dark);
}

.nav-logo .logo-text span {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-5);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--red-light) !important;
  transform: translateY(-1px);
}

/* ── HERO KONFIGURATOR ── */
.hero-konfig {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191,84,76,0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ── HERO KONFIG: Layout ── */
.hk-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 20px;
}

.hk-headline {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-top: 10px;
}

.hk-headline em {
  font-style: normal;
  color: var(--red);
}

/* Wrapper: Grid mit 3 Zeilen — Panels oben / Bild / Panels unten */
.hk-visual-wrap {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 10px 16px;
}

/* Visual Scene: mittige Zeile, volle Breite */
.hk-visual-wrap .visual-scene {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 100%;
  margin: 0;
  border-radius: 16px;
}

/* Panels außerhalb des Bildes */
.hk-corner {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 12px;
  padding: 16px 20px;
}

.hk-corner.top-left     { grid-column: 1; grid-row: 1; }
.hk-corner.top-right    { grid-column: 2; grid-row: 1; }
.hk-corner.bottom-left  { grid-column: 1; grid-row: 3; }
.hk-corner.bottom-right { grid-column: 2; grid-row: 3; }

/* Preis-Leiste unter dem Bild */
.hk-summary {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 20px;
  backdrop-filter: blur(10px);
}

.hk-summary-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
}

.hk-price-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  white-space: nowrap;
}

.hk-price-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  white-space: nowrap;
}

.hk-price-value .euro {
  font-size: 17px;
  font-weight: 600;
  margin-right: 2px;
  opacity: 0.7;
}

.hk-price-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.hk-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 4px;
}

.hk-tag strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.hk-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-ghost-white {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
}

.btn-red {
  padding: 10px 18px;
  background: var(--red);
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(191,84,76,0.4);
}

.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

/* Inhalte in den Panels */
.hk-bereich {
  padding: 0;
}

.hk-bereich.hk-disabled .hk-chips {
  opacity: 0.3;
  pointer-events: none;
}

.hk-bereich-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hk-icon {
  font-size: 18px;
}

.hk-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  flex: 1;
  letter-spacing: 0.1px;
}

.hk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hk-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  flex: 1;
  min-width: 90px;
}

.hk-chip:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
}

.hk-chip.selected {
  background: rgba(191,84,76,0.2);
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(191,84,76,0.25);
}

.hk-chip.chip-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.hk-chip-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
}

.hk-chip.selected .hk-chip-name {
  color: #fff;
}

.hk-chip-price {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
}

.hk-chip.selected .hk-chip-price {
  color: rgba(191,84,76,0.9);
}

.hk-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 0 9px 0 6px;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(191,84,76,0.15);
  border: 1px solid rgba(191,84,76,0.3);
  color: #ff6b8a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(191,84,76,0.4);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(191,84,76,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}


/* ── SECTIONS ── */
section {
  padding: 100px 40px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-4);
  max-width: 520px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  background: var(--gray-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-feature {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.about-feature-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.about-feature h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-feature p {
  font-size: 13px;
  color: var(--gray-4);
  line-height: 1.5;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about-image-grid .img-placeholder {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-2);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-4);
  font-size: 13px;
}

.about-image-grid .img-placeholder:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

/* ── PORTFOLIO ── */
.portfolio {
  background: var(--white);
}

.portfolio-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-2);
  aspect-ratio: 3/4;
  position: relative;
  cursor: pointer;
}

.portfolio-item:nth-child(1) { grid-column: span 2; aspect-ratio: 3/2; }
.portfolio-item:nth-child(4) { grid-column: span 2; aspect-ratio: 3/2; }

.portfolio-item .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #333);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.portfolio-item .placeholder-img svg {
  width: 28px;
  height: 28px;
  opacity: 0.3;
}

.portfolio-item:hover .placeholder-img {
  background: linear-gradient(135deg, #2a0a0f, #4a1020);
}

/* ── KONFIGURATOR ── */
.konfigurator {
  background: var(--gray-1);
  padding-top: 80px;
  padding-bottom: 120px;
}

.konfigurator-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

/* ── VISUAL SCENE ── */
.visual-scene {
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #A4D2EA;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  user-select: none;
}

.scene-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.scene-bg.scene-active {
  opacity: 1;
}

.scene-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.scene-layer.scene-active {
  opacity: 1;
}

/* Couple SVG: 1024×1024 → zentriert, untenbündig */
#layer-couple {
  z-index: 5;
  inset: auto;
  width: auto;
  height: 100%;
  left: 50%;
  bottom: 0;
  top: 0;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: bottom center;
  opacity: 1;
}

/* Saal sa3: klein, hinter Brautpaar, zwischen Braut und Videograf */
#layer-saal-sa3 {
  transform: scale(0.42) translateX(25%) translateY(-30%);
  transform-origin: bottom center;
  z-index: 3;
}

/* Album: oben mittig, erscheint bei Shooting-Auswahl */
#layer-album {
  inset: auto;
  width: 27%;
  height: auto;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  object-fit: contain;
  z-index: 4;
}

/* Fotograf vor Drohne/Kameramann */
#layer-fotograf { z-index: 2; }
#layer-drohne   { z-index: 1; }

/* Saal sa1: kleiner, nach rechts versetzt */
#layer-saal-sa1 {
  transform: scale(0.65) translateX(28%);
  transform-origin: bottom center;
}

.scene-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.38);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.scene-hint.hidden {
  opacity: 0;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 64px;
  max-width: 700px;
  padding: 0 20px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 22px;
  left: 60%;
  right: -40%;
  height: 2px;
  background: var(--gray-3);
  z-index: 0;
  transition: var(--transition);
}

.progress-step.active:not(:last-child)::after,
.progress-step.completed:not(:last-child)::after {
  background: var(--red);
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.progress-step.active .step-circle {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 4px 16px rgba(191,84,76,0.35);
}

.progress-step.active .step-circle span {
  filter: brightness(0) invert(1);
}

.progress-step.disabled .step-circle {
  opacity: 0.4;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-4);
  text-align: center;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: var(--red);
}

/* Konfigurator Cards */
.konfig-section {
  max-width: 900px;
  margin: 0 auto 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

.konfig-section.disabled-section {
  opacity: 0.5;
}

.konfig-section-header {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-2);
  cursor: pointer;
  user-select: none;
}

.konfig-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.konfig-section-title h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.konfig-section-title p {
  font-size: 13px;
  color: var(--gray-4);
  margin-top: 2px;
}

.section-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-toggle-label {
  font-size: 13px;
  color: var(--gray-4);
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-3);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--red);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.konfig-section-body {
  padding: 28px 32px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.konfig-section-body.two-cols {
  grid-template-columns: repeat(2, 1fr);
  max-width: 620px;
}

/* Option Cards */
.option-card {
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-sm);
  padding: 22px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  background: var(--white);
}

.option-card:hover {
  border-color: rgba(191,84,76,0.3);
  box-shadow: 0 4px 20px rgba(191,84,76,0.08);
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--red);
  background: rgba(191,84,76,0.03);
  box-shadow: 0 4px 24px rgba(191,84,76,0.15);
}

.option-card input[type="radio"] {
  display: none;
}

.option-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.option-badge.badge-blue {
  background: #007aff;
}

.option-badge.badge-purple {
  background: #9b5de5;
}

.option-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.option-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.option-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.option-price .currency {
  font-size: 14px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 3px;
  display: inline-block;
}

.option-desc {
  font-size: 13px;
  color: var(--gray-4);
  line-height: 1.5;
  margin-bottom: 14px;
}

.option-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.option-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-5);
}

.option-detail-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.option-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-2);
}

.info-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  transition: var(--transition);
}

.info-btn:hover {
  opacity: 0.75;
}

.info-btn svg {
  width: 16px;
  height: 16px;
}

.check-indicator {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.option-card.selected .check-indicator {
  background: var(--red);
  border-color: var(--red);
}

.option-card.selected .check-indicator::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

/* Add-on */
.addon-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gray-1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 4px;
}

.addon-row label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 1;
}

.addon-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
  cursor: pointer;
}

.addon-info h4 {
  font-size: 14px;
  font-weight: 700;
}

.addon-info p {
  font-size: 12px;
  color: var(--gray-4);
  margin-top: 2px;
}

.addon-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

/* ── PRICE BAR (sticky) ── */
.price-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(29,29,31,0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-bar.visible {
  transform: translateY(0);
}

.price-bar-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.price-bar-items {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.price-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 6px 12px;
}

.price-tag-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.price-tag-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.price-total {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-total-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-total-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}

.price-total-value .euro {
  font-size: 18px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 3px;
  display: inline-block;
  color: var(--red);
}

.price-bar-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-reserve {
  background: var(--red);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-reserve:hover {
  background: var(--red-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(191,84,76,0.4);
}

.btn-inquire {
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.btn-inquire:hover {
  background: rgba(255,255,255,0.18);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 680px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.modal-video video,
.modal-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2d0a12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.modal-video-placeholder .play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(191,84,76,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-placeholder .play-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 3px;
}

.modal-body {
  padding: 28px 32px 32px;
}

.modal-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.modal-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-5);
  margin-bottom: 24px;
}

.modal-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.modal-feature::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-soft);
  border: 1px solid rgba(191,84,76,0.2);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23BF544C' d='M8 13l-3-3 1.4-1.4L8 10.2l5.6-5.6L15 6z'/%3E%3C/svg%3E");
  background-size: contain;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 18px;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(0,0,0,0.8);
}

.modal-select-btn {
  width: 100%;
  background: var(--red);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.modal-select-btn:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

/* ── BOOKING MODAL ── */
.booking-modal .modal {
  max-width: 560px;
}

.booking-modal .modal-body {
  padding: 32px;
}

.booking-modal h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.booking-modal .subtitle {
  font-size: 14px;
  color: var(--gray-4);
  margin-bottom: 28px;
}

.booking-summary {
  background: var(--gray-1);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 24px;
}

.booking-summary h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-4);
  margin-bottom: 14px;
}

.booking-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-2);
  font-size: 14px;
}

.booking-summary-item:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 16px;
  margin-top: 4px;
  padding-top: 12px;
}

.booking-summary-item:last-child span:last-child {
  color: var(--red);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1.5px solid var(--gray-2);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(191,84,76,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.form-actions .btn-primary {
  flex: 1;
  justify-content: center;
}

.form-actions .btn-ghost {
  padding: 14px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-2);
  background: none;
  color: var(--gray-5);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-actions .btn-ghost:hover {
  border-color: var(--gray-3);
  color: var(--dark);
}

.reserve-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(191,84,76,0.05);
  border: 1px solid rgba(191,84,76,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 20px;
}

.reserve-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--red);
}

/* ── SUCCESS ── */
.success-screen {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(52,199,89,0.1);
  border: 2px solid rgba(52,199,89,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.success-screen h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.success-screen p {
  font-size: 15px;
  color: var(--gray-4);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.footer-brand .logo-text span {
  color: var(--red);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand .phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  margin-top: 20px;
}

.footer-brand .phone:hover {
  color: var(--red);
}

footer h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
}

footer ul li a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 60px 20px;
  }

  .hero-konfig {
    padding: 80px 16px 50px;
  }

  .hk-visual-wrap {
    grid-template-columns: 1fr;
  }

  .hk-corner.top-left     { grid-column: 1; grid-row: 1; }
  .hk-corner.top-right    { grid-column: 1; grid-row: 2; }
  .hk-corner.bottom-left  { grid-column: 1; grid-row: 4; }
  .hk-corner.bottom-right { grid-column: 1; grid-row: 5; }

  .hk-visual-wrap .visual-scene {
    grid-column: 1;
    grid-row: 3;
  }

  .hk-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hk-cta {
    width: 100%;
  }

  .hk-price-value {
    font-size: 24px;
  }

  .hero {
    padding: 100px 24px 80px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }

  .hero-stat:nth-child(4) {
    border-right: none;
  }

  .hero-stat:nth-child(5),
  .hero-stat:nth-child(6),
  .hero-stat:nth-child(7),
  .hero-stat:nth-child(8) {
    border-top: 1px solid rgba(255,255,255,0.07);
  }

  .hero-stat-number {
    font-size: 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-grid {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(4) {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .progress-bar {
    overflow-x: auto;
    padding: 0 20px 10px;
    justify-content: flex-start;
  }

  .progress-step {
    min-width: 80px;
  }

  .konfig-section-header {
    padding: 20px;
  }

  .konfig-section-body {
    padding: 16px 20px 20px;
    grid-template-columns: 1fr;
  }

  .konfig-section-body.two-cols {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .price-bar {
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px;
  }

  .price-bar-left {
    width: 100%;
    justify-content: space-between;
  }

  .price-bar-items {
    display: none;
  }

  .price-bar-actions {
    width: 100%;
  }

  .btn-reserve,
  .btn-inquire {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 10px 16px;
  }

  .modal-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .price-bar {
    padding-bottom: 24px;
  }
}
