/* ================================================
   prices-v2.css — Configurator Prototype v2
   PAÜ Spor Merkezi — 2026
   ================================================ */

:root {
  --v2-navy: #0a1628;
  --v2-navy-2: #122240;
  --v2-ink: #1a1a1a;
  --v2-paper: #f5f2ee;
  --v2-cream: #e8e4e0;
  --v2-choice-card-width: 360px;
  --v2-choice-card-height: 340px;
  --v2-section-grid-width: 1510px;
  --v2-section-grid-gap: 1.2rem;
  --v2-package-card-width: clamp(300px, 26.5vw, 410px);
  --v2-package-card-height: 510px;
  --v2-step4-card-gap: var(--v2-section-grid-gap);
}

body {
  background: var(--v2-paper);
}

.v2-selection-track {
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  z-index: 99;
  min-height: 34px;
  padding: 0.35rem 5%;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(10,22,40,0.08);
  backdrop-filter: blur(10px);
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.header.scrolled + .v2-selection-track,
.v2-selection-track.is-visible {
  top: 96px;
}

.v2-selection-track.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.v2-selection-track-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 0;
  color: var(--v2-navy);
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.v2-selection-track-inner::-webkit-scrollbar {
  display: none;
}

.v2-selection-placeholder {
  color: rgba(10,22,40,0.42);
}

.v2-selection-item {
  display: inline-flex;
  align-items: center;
  max-width: 34ch;
  overflow: hidden;
  text-overflow: ellipsis;
  background: transparent;
  border: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}

.v2-selection-item:hover,
.v2-selection-item:focus-visible {
  color: #0b6fa4;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.v2-selection-item:focus-visible {
  outline: 2px solid rgba(11,111,164,0.35);
  outline-offset: 3px;
  border-radius: 3px;
}

.v2-selection-item--full {
  max-width: none;
  overflow: visible;
  text-overflow: clip;
  flex: 0 0 auto;
}

.v2-selection-separator {
  color: rgba(10,22,40,0.38);
}

.v2-selection-back {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--v2-navy);
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.v2-selection-back i {
  font-size: 0.85em;
}

.v2-selection-back:hover,
.v2-selection-back:focus-visible {
  color: #000;
}

/* ---------- HERO (fullscreen) ---------- */
.v2-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 6rem;
  color: #fff;
  background: url('../images/z1.webp') center center / cover no-repeat;
  overflow: hidden;
}

.v2-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.85) 100%);
  z-index: 0;
}

.v2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.v2-hero-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.8rem;
}

.v2-hero-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0 0 2rem;
  max-width: 820px;
}

.v2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  background: #fff;
  color: var(--v2-navy);
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  animation: v2CtaBounce 2.4s ease-in-out infinite;
  transition: transform 0.25s ease;
  will-change: transform;
}
.v2-hero-cta:hover {
  animation-play-state: paused;
  transform: translateY(-2px);
}

@keyframes v2CtaBounce {
  0%, 55%, 100% { transform: translateY(0); }
  68% { transform: translateY(-8px); }
  80% { transform: translateY(0); }
  90% { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .v2-hero-cta,
  .v2-reminder-jump {
    animation: none;
  }
}

/* ---------- STEP BASE ---------- */
.v2-step {
  display: none;
  min-height: 100vh;
  min-height: 100svh;
  box-sizing: border-box;
  padding: 6rem 5%;
  scroll-margin-top: 5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.v2-step > * {
  width: 100%;
}

.v2-step.is-open {
  display: flex;
  animation: stepReveal 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes stepReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.v2-step--dark {
  background: var(--v2-paper);
  color: var(--v2-navy);
}

.v2-step-head {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
  scroll-margin-top: 10rem;
}

.v2-step-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin: 0;
  color: inherit;
}

.v2-step:not(.v2-step--dark) .v2-step-title {
  color: var(--v2-navy);
}

.v2-reminder-jump-wrap {
  display: flex;
  justify-content: center;
  margin: 2rem auto 0;
}

#step4 .v2-reminder-jump-wrap {
  display: none;
}

#step4.has-results .v2-reminder-jump-wrap,
#stepResult .v2-reminder-jump-wrap {
  display: flex;
}

.v2-reminder-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  background: var(--v2-navy);
  color: #fff;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  animation: v2CtaBounce 2.4s ease-in-out infinite;
  transition: transform 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.v2-reminder-jump:hover,
.v2-reminder-jump:focus-visible {
  animation-play-state: paused;
  transform: translateY(-2px);
  background: #13243d;
}

.v2-step--reminders {
  background: var(--v2-paper);
  color: var(--v2-navy);
  min-height: auto;
  padding: 5rem 5% 4rem;
  justify-content: flex-start;
}

.v2-reminder-box {
  width: min(100%, var(--v2-section-grid-width));
  max-width: var(--v2-section-grid-width);
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: rgba(10,22,40,0.04);
  color: #0a1628;
  border: 1px solid rgba(10,22,40,0.08);
  border-radius: 8px;
  box-shadow: none;
}

.v2-reminder-box h2 {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 1.5rem;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #0a1628;
}

.v2-reminder-box h2 i {
  opacity: 0.4;
  margin-right: 0.5rem;
}

.v2-reminder-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-reminder-box li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.06);
  color: #555;
  font-size: 0.9rem;
  line-height: 1.7;
}

.v2-reminder-box li:last-child {
  border-bottom: none;
}

.v2-reminder-box li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(10,22,40,0.25);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

#step4 {
  padding-left: 3%;
  padding-right: 3%;
  scroll-margin-top: 8.5rem;
}

/* ---------- CARD GRID ---------- */
.v2-cards {
  display: grid;
  width: min(100%, var(--v2-section-grid-width));
  max-width: var(--v2-section-grid-width);
  gap: var(--v2-section-grid-gap);
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
}
.v2-cards--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v2-cards--two   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v2-cards--four  {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-card[data-mode] {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v2-card[data-mode] .v2-card-title {
  font-size: 1.75rem;
  line-height: 1.18;
  font-weight: 800;
}

.v2-card {
  position: relative;
  text-align: left;
  padding: 2.2rem 1.8rem;
  background: #fff;
  color: var(--v2-navy);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 28px rgba(10,22,40,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  height: var(--v2-choice-card-height);
}

.v2-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0;
  background: var(--v2-navy);
  transition: height 0.35s ease;
  z-index: -1;
}

.v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10,22,40,0.12);
}
.v2-card:hover::before { height: 100%; }
.v2-card:hover .v2-card-title,
.v2-card:hover .v2-card-note { color: #fff; }
.v2-card:hover .v2-card-icon { background: #fff; color: var(--v2-navy); }

.v2-card.selected {
  background: var(--v2-navy);
  border-color: var(--v2-navy);
  color: #fff;
}
.v2-card.selected .v2-card-title,
.v2-card.selected .v2-card-note { color: #fff; }
.v2-card.selected .v2-card-icon { background: #fff; color: var(--v2-navy); }
.v2-card.selected .v2-card-check { opacity: 1; transform: scale(1); }

.v2-card--dark {
  background: rgba(255,255,255,0.04);
  border: 0;
  color: #fff;
}
.v2-card--dark:hover { background: rgba(255,255,255,0.08); box-shadow: none; }
.v2-card--dark::before { background: #000; }
.v2-card--dark.selected { background: #000; }

.v2-card--dark .v2-card-title,
.v2-card--dark .v2-card-note { color: #fff; }
.v2-card--dark .v2-card-icon { background: rgba(255,255,255,0.1); color: #fff; }
.v2-card--dark.selected .v2-card-icon { background: #fff; color: var(--v2-navy); }
.v2-card--dark .v2-card-check { background: #fff; color: var(--v2-navy); }

.v2-card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(10,22,40,0.06);
  color: var(--v2-navy);
  border-radius: 50%;
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.v2-card-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  transition: color 0.3s ease;
}

.v2-card-note {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(10,22,40,0.68);
  margin: 0;
  transition: color 0.3s ease;
}

.v2-card-check {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--v2-navy);
  border-radius: 50%;
  font-size: 0.85rem;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (min-width: 901px) {
  .v2-cards .v2-card {
    display: grid;
    grid-template-rows: 52px 8.2rem auto;
    row-gap: 1.05rem;
    align-content: start;
  }

  .v2-cards .v2-card-icon,
  .v2-cards .v2-card-title,
  .v2-cards .v2-card-note {
    margin: 0;
  }

  .v2-cards .v2-card-title,
  .v2-cards .v2-card-note {
    align-self: start;
  }

  .v2-cards .v2-card-title {
    line-height: 1.12;
  }
}

/* ---------- DURATION CARDS ---------- */
.v2-duration-cards {
  display: grid;
  width: min(100%, var(--v2-section-grid-width));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--v2-section-grid-gap);
  max-width: var(--v2-section-grid-width);
  margin: 0 auto;
  justify-content: center;
  scroll-margin-top: 9rem;
  transition: max-width 0.35s ease, gap 0.35s ease;
}

.v2-dur-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: var(--v2-choice-card-height);
  padding: 2.2rem 1.4rem;
  background: #fff;
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(10,22,40,0.1);
  color: var(--v2-navy);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease, height 0.35s ease, padding 0.35s ease, border-radius 0.35s ease;
}

.v2-dur-card::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 0;
  background: var(--v2-navy);
  transition: height 0.35s ease;
  z-index: -1;
}
.v2-dur-card:hover::before { height: 100%; }

#step4.is-compact .v2-duration-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--v2-step4-card-gap);
  max-width: var(--v2-section-grid-width);
  margin-bottom: var(--v2-step4-card-gap);
}

#step4.is-compact .v2-dur-card {
  height: auto;
  min-height: 110px;
  padding: 1.3rem 1rem;
  gap: 0.35rem;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(10,22,40,0.08);
}

#step4.is-compact .v2-dur-card-title { font-size: 2rem; }
#step4.is-compact .v2-dur-card-sub { font-size: 1rem; }

#step4:not(.is-compact) .v2-pkg-grid { display: none; }
#step4:not(.is-compact) .v2-dur-card-title { font-size: 3rem; }
#step4:not(.is-compact) .v2-dur-card-sub { font-size: 1.25rem; }

.v2-dur-card:hover {
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(10,22,40,0.18);
}
.v2-dur-card:hover .v2-dur-card-sub { opacity: 0.85; }

.v2-dur-card-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.v2-dur-card-sub {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.v2-dur-card-badge {
  position: absolute;
  top: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: #fff;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(34,197,94,0.35);
  z-index: 1;
}

#step4:not(.is-compact) .v2-dur-card-badge {
  font-size: 1.05rem;
  padding: 0.45rem 1.1rem;
  letter-spacing: 0.2em;
  top: 2.65rem;
}

#step4.is-compact .v2-dur-card-badge {
  font-size: 0.52rem;
  padding: 0.12rem 0.36rem;
  letter-spacing: 0.08em;
  top: 0.35rem;
}

.v2-dur-card.active {
  background: var(--v2-navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(10,22,40,0.28);
}

.v2-dur-card.active .v2-dur-card-sub { opacity: 0.85; }

/* ---------- PACKAGE GRID ---------- */
.v2-pkg-grid {
  display: grid;
  width: min(100%, var(--v2-section-grid-width));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--v2-step4-card-gap);
  justify-content: center;
  align-items: stretch;
  max-width: var(--v2-section-grid-width);
  margin: 0 auto;
}

.v2-pkg-grid[data-count="1"] {
  grid-template-columns: minmax(0, 1fr);
}

.v2-pkg-grid[data-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-pkg-grid[data-count="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.v2-pkg-grid[data-count="5"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-pkg-card {
  position: relative;
  text-align: left;
  padding: 1.6rem 1.5rem 0.95rem;
  background: #fff;
  color: var(--v2-navy);
  border: 0;
  border-radius: 12px;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: var(--v2-package-card-height);
  box-shadow: 0 10px 28px rgba(10,22,40,0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.v2-pkg-card:hover {
  transform: none;
  box-shadow: 0 10px 28px rgba(10,22,40,0.12);
}

.v2-pkg-card.selected {
  outline: 3px solid var(--v2-navy);
  outline-offset: -3px;
}

.v2-pkg-card--student {
  background: #f0efec;
}

.v2-pkg-card--student .v2-pkg-icon {
  background: rgba(22,163,74,0.18);
  color: #15803d;
}

.v2-pkg-card--student .v2-pkg-price {
  margin-top: auto;
}

.v2-pkg-day-note {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.35rem;
  max-width: 188px;
  padding: 0.42rem 0.5rem;
  background: rgba(180,83,9,0.1);
  color: #b45309;
  border: 1px solid rgba(180,83,9,0.2);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  pointer-events: none;
}

.v2-pkg-day-note i {
  margin-top: 0.05rem;
  font-size: 0.7rem;
}

.v2-pkg-head { margin-bottom: 1.2rem; }

.v2-pkg-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(10,22,40,0.08);
  color: var(--v2-navy);
  border-radius: 50%;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.v2-pkg-name {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.v2-pkg-toggle {
  display: inline;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  cursor: default;
}

.v2-pkg-category {
  margin-top: 0.55rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(10,22,40,0.72);
}

.v2-pkg-list {
  display: grid;
  gap: 1.85rem;
  margin: 0.55rem 0 0;
  flex: 0 0 auto;
}

.v2-pkg-spacer { flex: 1 1 auto; min-height: 0; }
.v2-pkg-access-group {
  position: relative;
  border: 1px solid rgba(10,22,40,0.12);
  border-radius: 8px;
  padding: 0.58rem 0.65rem 0.18rem;
}

.v2-pkg-access-group--serbest {
  border-color: rgba(22,163,74,0.42);
}

.v2-pkg-access-group--extra {
  border-color: rgba(180,83,9,0.42);
}

.v2-pkg-access-group--unavailable {
  border-color: rgba(10,22,40,0.22);
}

.v2-pkg-access-title {
  position: absolute;
  top: -0.72rem;
  left: 0.68rem;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.v2-pkg-access-title span {
  display: inline-flex;
  background: #fff;
  padding: 0 0.38rem;
}

.v2-pkg-card--student .v2-pkg-access-title span {
  background: #f0efec;
}

.v2-pkg-access-group--serbest .v2-pkg-access-title {
  color: #16a34a;
}

.v2-pkg-access-group--extra .v2-pkg-access-title {
  color: #b45309;
}

.v2-pkg-access-group--unavailable .v2-pkg-access-title {
  color: rgba(10,22,40,0.48);
}

.v2-pkg-access-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.v2-pkg-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.32rem 0;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.35;
  border-bottom: 1px solid rgba(10,22,40,0.07);
}

.v2-pkg-list li:last-child {
  border-bottom: 0;
}

.v2-pkg-list li.no-value {
  justify-content: flex-start;
}

.v2-pkg-list li .label {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: uppercase;
}
.v2-pkg-list li i { font-size: 0.88rem; opacity: 0.75; }
.v2-pkg-list li .value {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.76rem;
  opacity: 0.85;
  text-transform: uppercase;
}
.v2-pkg-list li.serbest .label,
.v2-pkg-list li.serbest .value {
  color: #16a34a;
}
.v2-pkg-list li.extra {
  font-size: 0.76rem;
  font-weight: 400;
}
.v2-pkg-list li.extra .label {
  color: #b45309;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.v2-pkg-list li.extra .value {
  color: #b45309;
  font-size: 0.76rem;
  font-weight: 600;
}
.v2-pkg-list li.unavailable .label,
.v2-pkg-list li.unavailable .value {
  color: rgba(10,22,40,0.42);
}

.v2-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.5rem;
  text-align: center;
  color: rgba(10,22,40,0.62);
  background: #fff;
  border: 1px solid rgba(10,22,40,0.08);
}

.v2-pkg-price {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.v2-pkg-price-left {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  min-width: 0;
}

.v2-pkg-price-num {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.v2-pkg-price-period {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

.v2-pkg-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.05rem;
  background: var(--v2-navy);
  color: #fff;
  border-radius: 999px;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  flex: 0 0 auto;
}

.v2-pkg-cta:hover,
.v2-pkg-cta:focus-visible {
  background: #000;
  transform: translateY(-1px);
}

.v2-pkg-cta i {
  font-size: 0.78rem;
}

.v2-access-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.v2-access-link span {
  transition: color 0.2s ease;
}
.v2-access-link:hover span,
.v2-access-link:focus-visible span {
  color: #0b6fa4;
}
.v2-access-link:focus-visible {
  outline: 2px solid rgba(11,111,164,0.35);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ---------- SIMPLE RESULT CARDS ---------- */
.v2-result {
  width: 100%;
  max-width: var(--v2-section-grid-width);
  margin: 0 auto;
}

.v2-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--v2-section-grid-gap);
}

.v2-result-grid--single {
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
}

.v2-result-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
}

.v2-result-card {
  background: #fff;
  color: var(--v2-navy);
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  border: 0;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
}

.v2-result-card--price-only {
  display: flex;
  flex-direction: column;
  min-height: 268px;
}

.v2-result-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10,22,40,0.07);
  margin-bottom: 1rem;
}

.v2-result-card--no-icon .v2-result-card-meta {
  margin-top: 0;
}

.v2-result-card-title {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 1.78rem;
  line-height: 1.05;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

.v2-result-card--price-only .v2-result-card-title {
  min-height: 3.35rem;
}

.v2-result-title-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.v2-result-title-link:hover,
.v2-result-title-link:focus-visible {
  color: #0b6fa4;
}

.v2-result-card-meta {
  margin: 0.7rem 0 0;
  color: rgba(10,22,40,0.62);
  line-height: 1.5;
  font-size: 0.92rem;
}

.v2-result-card--price-only .v2-result-card-meta {
  min-height: 1.4rem;
}

.v2-result-price {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 2px solid rgba(10,22,40,0.1);
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.v2-result-card--price-only .v2-result-price {
  margin-top: auto;
}

.v2-result-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.v2-result-card--no-meta .v2-result-list {
  margin-top: 0;
}

.v2-result-grid--two .v2-result-list li:first-child {
  align-items: flex-start;
}

.v2-result-grid--two .v2-result-list li:first-child .label,
.v2-result-grid--two .v2-result-list li:first-child .v2-access-link {
  align-items: flex-start;
}

.v2-result-grid--two .v2-result-list li:first-child i {
  margin-top: 0.25rem;
}

.v2-result-grid--two .v2-result-list li:first-child .value {
  align-self: center;
}

.v2-result-grid--two .v2-result-list .label,
.v2-result-grid--two .v2-result-list .v2-access-link {
  max-width: 78%;
}

.v2-result-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.07);
  font-size: 1.18rem;
}

.v2-result-list li:last-child {
  border-bottom: none;
}

.v2-result-list .label,
.v2-result-list .v2-access-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
}

.v2-result-list i {
  font-size: 0.92rem;
  opacity: 0.72;
}

.v2-result-list .value {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-size: 1.3rem;
  text-transform: uppercase;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  :root { --v2-step4-card-gap: 0.8rem; }

  .v2-selection-track {
    top: 76px;
    padding: 0.3rem 5%;
  }

  .header.scrolled + .v2-selection-track,
  .v2-selection-track.is-visible {
    top: 76px;
  }

  .v2-selection-track-inner {
    justify-content: flex-start;
    font-size: 0.78rem;
    overflow: hidden;
    padding-left: 0;
  }

  .v2-selection-item,
  .v2-selection-item--full,
  .v2-selection-separator {
    display: none;
  }

  .v2-selection-back {
    display: inline-flex !important;
  }

  .v2-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 6rem 5% 4rem;
  }
  .v2-hero-title { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .v2-hero-lead { font-size: 1rem; }

  .v2-step { padding: 3.5rem 5%; }
  .v2-step-head { margin-bottom: 2rem; }
  .v2-reminder-jump-wrap { margin-top: 1.25rem; }
  .v2-reminder-jump {
    min-height: 46px;
    padding: 0.72rem 1.25rem;
    font-size: 0.84rem;
  }
  .v2-reminder-box {
    padding: 1.35rem;
  }
  .v2-reminder-box ul {
    gap: 0.62rem;
    font-size: 0.92rem;
  }

  .v2-cards--four,
  .v2-cards--three,
  .v2-cards--two { grid-template-columns: 1fr; gap: 0.6rem; }

  .v2-cards .v2-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto;
    align-items: center;
    column-gap: 0.9rem;
    row-gap: 0.15rem;
    height: auto;
    min-height: 0;
    padding: 0.9rem 1.1rem;
    text-align: left;
    border-radius: 10px;
  }

  .v2-cards .v2-card-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 44px; height: 44px;
    margin: 0;
    font-size: 1rem;
  }

  .v2-cards .v2-card-title {
    grid-column: 2;
    font-size: 1.05rem;
    line-height: 1.15;
    margin: 0;
    align-self: center;
  }

  .v2-cards .v2-card-note {
    grid-column: 2;
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
    align-self: center;
  }

  .v2-cards .v2-card:not(:has(.v2-card-note)) .v2-card-title {
    grid-row: 1 / span 2;
    align-self: center;
  }
  .v2-cards .v2-card:has(.v2-card-note) .v2-card-title { align-self: end; }
  .v2-cards .v2-card:has(.v2-card-note) .v2-card-note { align-self: start; }

  .v2-card[data-mode] .v2-card-title { font-size: 1.05rem; }

  .v2-card-check {
    top: 50%;
    right: 0.9rem;
    transform: translateY(-50%) scale(0);
    width: 24px; height: 24px;
    font-size: 0.7rem;
  }
  .v2-card.selected .v2-card-check {
    transform: translateY(-50%) scale(1);
  }

  .v2-duration-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    max-width: 100%;
  }
  .v2-dur-card {
    height: auto;
    min-height: 140px;
    padding: 1.4rem 0.8rem;
    border-radius: 14px;
  }
  #step4.is-compact .v2-duration-cards {
    gap: var(--v2-step4-card-gap);
    margin-bottom: var(--v2-step4-card-gap);
  }
  #step4.is-compact .v2-dur-card { min-height: 88px; padding: 1rem 0.45rem; }
  #step4.is-compact .v2-dur-card-title {
    font-size: 1.18rem;
    white-space: nowrap;
  }
  #step4.is-compact .v2-dur-card-sub {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  #step4:not(.is-compact) .v2-dur-card-title { font-size: 2.2rem; }
  #step4:not(.is-compact) .v2-dur-card-sub { font-size: 1rem; }
  .v2-dur-card-badge {
    font-size: 0.48rem;
    padding: 0.14rem 0.38rem;
    letter-spacing: 0.11em;
    top: 0.65rem;
  }
  #step4:not(.is-compact) .v2-dur-card-badge {
    font-size: 0.48rem;
    padding: 0.14rem 0.38rem;
    letter-spacing: 0.11em;
    top: 0.65rem;
  }
  #step4.is-compact .v2-dur-card-badge {
    font-size: 0.38rem;
    padding: 0.08rem 0.25rem;
    letter-spacing: 0.08em;
    top: 0.25rem;
  }

  .v2-pkg-grid,
  .v2-pkg-grid[data-count="1"],
  .v2-pkg-grid[data-count="2"],
  .v2-pkg-grid[data-count="4"],
  .v2-pkg-grid[data-count="5"] {
    grid-template-columns: 1fr;
    max-width: 520px;
    justify-content: stretch;
  }

  .v2-pkg-card {
    width: 100%;
    min-height: auto;
  }

  #step4.is-compact .v2-pkg-card {
    position: relative;
    padding: 1.05rem 1.1rem;
    overflow: hidden;
  }

  #step4.is-compact .v2-pkg-card:not(.selected) .v2-pkg-day-note {
    display: none;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-day-note {
    top: 0.8rem;
    right: 3.2rem;
    max-width: 150px;
    padding: 0.3rem 0.38rem;
    font-size: 0.56rem;
  }

  #step4.is-compact .v2-pkg-card::after {
    content: '+';
    position: absolute;
    top: 1.08rem;
    right: 1.05rem;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(10,22,40,0.08);
    color: var(--v2-navy);
    font-family: 'Barlow Condensed', 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
  }

  #step4.is-compact .v2-pkg-card.selected::after {
    content: '-';
    background: var(--v2-navy);
    color: #fff;
  }

  #step4.is-compact .v2-pkg-head {
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 0.8rem;
    align-items: center;
    margin-bottom: 0;
    padding-right: 2.2rem;
  }

  #step4.is-compact .v2-pkg-icon {
    width: 36px;
    height: 36px;
    font-size: 0.92rem;
    margin: 0;
  }

  #step4.is-compact .v2-pkg-name {
    font-size: 1.35rem;
    line-height: 1;
  }

  #step4.is-compact .v2-pkg-toggle {
    display: inline-flex;
    width: 100%;
    cursor: pointer;
  }

  #step4.is-compact .v2-pkg-toggle:focus-visible {
    outline: 2px solid rgba(10,22,40,0.28);
    outline-offset: 4px;
    border-radius: 4px;
  }

  #step4.is-compact .v2-pkg-card:not(.selected) .v2-pkg-category,
  #step4.is-compact .v2-pkg-card:not(.selected) .v2-pkg-list,
  #step4.is-compact .v2-pkg-card:not(.selected) .v2-pkg-price {
    display: none;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-head {
    margin-bottom: 0.85rem;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-category {
    grid-column: 2;
    margin-top: 0.25rem;
    font-size: 0.86rem;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-list li {
    padding: 0.38rem 0;
    font-size: 0.68rem;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-list {
    gap: 1.5rem;
    margin-top: 0.48rem;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-access-title {
    top: -0.68rem;
    font-size: 0.84rem;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-list li.extra {
    font-size: 0.68rem;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-list li.extra .label {
    font-size: 0.68rem;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-list li.extra .value {
    font-size: 0.68rem;
  }

  #step4.is-compact .v2-pkg-card.selected .v2-pkg-price {
    padding-top: 0.75rem;
  }

  .v2-result-grid--single,
  .v2-result-grid--two {
    grid-template-columns: 1fr;
  }

  .v2-result-grid:not(.v2-result-grid--single):not(.v2-result-grid--two) {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }

  .v2-result-grid:not(.v2-result-grid--single):not(.v2-result-grid--two) .v2-result-card {
    padding: 0.85rem 0.6rem;
  }

  .v2-result-grid:not(.v2-result-grid--single):not(.v2-result-grid--two) .v2-result-card-icon {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
    margin-bottom: 0.45rem;
  }

  .v2-result-grid:not(.v2-result-grid--single):not(.v2-result-grid--two) .v2-result-card-title {
    font-size: 0.96rem;
    line-height: 1.1;
  }

  .v2-result-grid:not(.v2-result-grid--single):not(.v2-result-grid--two) .v2-result-card-meta {
    font-size: 0.65rem;
    margin: 0.22rem 0 0;
    line-height: 1.3;
  }

  .v2-result-grid:not(.v2-result-grid--single):not(.v2-result-grid--two) .v2-result-price {
    font-size: 1.35rem;
    margin-top: 0.55rem;
    padding-top: 0.45rem;
  }

  .v2-result-card {
    padding: 1.45rem 1.25rem;
  }
}
