/* Tour Page Specific Styles */
.tour-section {
  padding: var(--space-16) var(--space-6);
}

.tour-section--alt {
  background: var(--color-background-secondary);
}

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

.tour-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.tour-section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 var(--space-4) 0;
  line-height: 1.2;
}

.tour-section__subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-4) 0;
  line-height: 1.6;
}

.tour-section__cta {
  font-size: 16px;
  color: var(--color-primary);
  font-style: italic;
  margin: 0 0 var(--space-8) 0;
}

/* Hero for Tour */
.tour-hero {
  padding: var(--space-12) var(--space-6) var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tour-hero__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  opacity: 0.3;
  background: radial-gradient(circle, var(--color-primary-subtle) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.tour-hero__blob--right {
  top: -20%;
  right: -10%;
}

.tour-hero__blob--left {
  bottom: -20%;
  left: -10%;
}

.tour-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.tour-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: var(--space-8);
  transition: color 0.2s ease;
}

.tour-hero__back:hover {
  color: var(--color-text);
}

.tour-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 var(--space-4) 0;
  line-height: 1.1;
}

.tour-hero__highlight {
  color: var(--color-primary);
}

.tour-hero__subtitle {
  font-size: 20px;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-8) 0;
  line-height: 1.6;
}

/* Problem Cards */
.tour-problems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.tour-problem {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: var(--space-6);
  text-align: left;
}

.tour-problem__icon {
  width: 48px;
  height: 48px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: #EF4444;
}

.tour-problem__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-2) 0;
}

.tour-problem__text {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Solution Cards */
.tour-solution {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.02) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 16px;
  padding: var(--space-6);
  text-align: left;
}

.tour-solution__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}

/* Feature Grid */
.tour-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.tour-feature {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: var(--space-8);
  transition: all 0.3s ease;
}

.tour-feature:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.1);
}

.tour-feature__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0284C7 100%);
  color: white;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.tour-feature__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-3) 0;
}

.tour-feature__desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-4) 0;
  line-height: 1.6;
}

.tour-feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-feature__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.tour-feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Pillars Section */
.tour-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (max-width: 900px) {
  .tour-pillars {
    grid-template-columns: 1fr;
  }
}

.tour-pillar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
}

.tour-pillar:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.tour-pillar__icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary-subtle);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--color-primary);
}

.tour-pillar__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-2) 0;
}

.tour-pillar__desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.tour-pillar[data-pillar] {
  cursor: pointer;
}

.tour-pillar::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 16px;
  background: var(--color-border);
  transition: background 0.3s ease;
}

.tour-pillar.is-selected::after {
  background: var(--color-primary);
}

.tour-pillar.is-selected {
  border-color: var(--color-primary);
  background: rgba(14, 165, 233, 0.05);
}

.tour-pillar {
  position: relative;
}

/* Pillar Preview Carousel */
.pillar-preview {
  margin-top: var(--space-8);
  display: none;
}

.pillar-preview.is-active {
  display: block;
}

.pillar-preview__container {
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: 16px;
  overflow: hidden;
}

.pillar-preview__carousel {
  position: relative;
}

.pillar-preview__carousel {
  overflow: hidden;
  position: relative;
}

.pillar-preview__slides {
  display: flex;
  transition: transform 0.3s ease-out;
  touch-action: pan-y pinch-zoom;
}

.pillar-preview__slides.is-dragging {
  transition: none;
}

.pillar-preview__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.pillar-preview__image {
  width: 100%;
  height: auto;
  display: block;
}

.pillar-preview__content {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--color-border);
}

.pillar-preview__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-2) 0;
}

.pillar-preview__text {
  font-size: 15px;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
}

.pillar-preview__text strong {
  color: var(--color-text);
  font-weight: 600;
}

.pillar-preview__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-4);
  border-top: 1px solid var(--color-border);
  background: rgba(14, 165, 233, 0.03);
}

.pillar-preview__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.pillar-preview__dot:hover {
  background: rgba(14, 165, 233, 0.3);
}

.pillar-preview__dot.is-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.pillar-preview__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-3);
  pointer-events: none;
}

.pillar-preview__arrow {
  width: 36px;
  height: 80px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pillar-preview__arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

/* Content Builder Blocks Preview */
.tour-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
  justify-content: center;
}

.tour-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}


.tour-block svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

/* Use Cases Grid */
.tour-usecases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: 20px;
}

.tour-usecase {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.tour-usecase::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 16px;
  background: var(--color-border);
  transition: background 0.2s ease;
}

.tour-usecase:hover {
  border-color: var(--color-primary);
  background: rgba(14, 165, 233, 0.05);
  transform: translateY(-2px);
}

.tour-usecase:active {
  transform: translateY(0);
}

.tour-usecase.is-selected {
  border-color: var(--color-primary);
  background: rgba(14, 165, 233, 0.1);
}

.tour-usecase.is-selected::after {
  background: var(--color-primary);
}

.tour-usecase__icon {
  font-size: 32px;
  margin-bottom: var(--space-2);
}

.tour-usecase__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 4px 0;
}

.tour-usecase__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Before/After Comparison */
.tour-before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-8) 0;
}

.tour-before-after__side {
  flex: 1;
  max-width: 400px;
  padding: var(--space-8);
  border-radius: 20px;
  text-align: center;
}

.tour-before-after__side--before {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
  border: 2px solid rgba(239, 68, 68, 0.2);
}

.tour-before-after__side--after {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
  border: 2px solid rgba(16, 185, 129, 0.3);
}

.tour-before-after__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.tour-before-after__side--before .tour-before-after__icon {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.tour-before-after__side--after .tour-before-after__icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.tour-before-after__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-3);
}

.tour-before-after__side--before .tour-before-after__label {
  color: #EF4444;
}

.tour-before-after__side--after .tour-before-after__label {
  color: #10B981;
}

.tour-before-after__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 var(--space-3) 0;
  color: var(--color-text);
}

.tour-before-after__side--before .tour-before-after__title {
  color: var(--color-text-secondary);
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.4);
}

.tour-before-after__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.tour-before-after__arrow {
  color: var(--color-primary);
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .tour-before-after {
    flex-direction: column;
    gap: var(--space-4);
  }

  .tour-before-after__side {
    max-width: 100%;
    width: 100%;
  }

  .tour-before-after__arrow {
    transform: rotate(90deg);
  }
}

/* CTA Section */
.tour-cta {
  text-align: center;
  padding: var(--space-16) var(--space-6);
}

.tour-cta__box {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.02) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 24px;
  padding: var(--space-12) var(--space-8);
  max-width: 700px;
  margin: 0 auto;
}

.tour-cta__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 var(--space-3) 0;
}

.tour-cta__text {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-6) 0;
}

.tour-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #0284C7 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.tour-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

/* Visual Demo Box */
.tour-demo {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: var(--space-8);
  margin-top: var(--space-8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
}

/* Two-Panel Layout */
.tour-demo__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

@media (max-width: 1100px) {
  .tour-demo__layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

.tour-demo__panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.tour-demo__panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--color-background-secondary);
  border-bottom: 1px solid var(--color-border);
}

.tour-demo__panel-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.tour-demo__panel-icon--primary {
  background: var(--color-primary);
}

.tour-demo__panel-icon--success {
  background: #22C55E;
}

.tour-demo__panel-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.tour-demo__panel-subtitle {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin: 0;
}

.tour-demo__panel-body {
  padding: 12px;
}

/* Experience Cards Stack */
.tour-demo__experiences {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-demo__exp-card {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  gap: 10px;
}

.tour-demo__exp-accent {
  width: 4px;
  border-radius: 2px;
  flex-shrink: 0;
}

.tour-demo__exp-content {
  flex: 1;
  min-width: 0;
}

.tour-demo__exp-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tour-demo__exp-meta {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin: 0 0 6px 0;
}

.tour-demo__exp-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tour-demo__exp-skill {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.tour-demo__exp-skill span {
  font-weight: 600;
}

/* Radar Chart Placeholder */
.tour-demo__radar {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
  position: relative;
}

.tour-demo__radar svg {
  width: 100%;
  height: 100%;
}

/* Top Skills List */
.tour-demo__top-skills {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tour-demo__skill-stat {
  display: grid;
  grid-template-columns: 100px 1fr 85px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--color-background-secondary);
  border-radius: 10px;
  transition: all 0.15s ease;
}

.tour-demo__skill-stat:hover {
  background: var(--color-border);
}

.tour-demo__skill-stat-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Segmented progress bar container */
.tour-demo__skill-stat-progress {
  display: flex;
  gap: 2px;
}

/* Individual progress bar segment */
.tour-demo__skill-stat-bar {
  flex: 1;
  height: 5px;
  border-radius: 2px;
  background: var(--color-border);
  transition: background-color 0.3s ease;
}

.tour-demo__skill-stat-bar--filled {
  /* Color set inline */
}

.tour-demo__skill-stat-level {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Arrow between panels */
.tour-demo__flow-arrow {
  display: none;
}

@media (min-width: 1101px) {
  .tour-demo__flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    color: white;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
  }
}

.tour-demo__layout-wrapper {
  position: relative;
}

/* Demo Header */
.tour-demo__header {
  text-align: center;
  padding-bottom: var(--space-5);
  margin-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border);
}

.tour-demo__header-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.tour-demo__header-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  padding: 6px 12px;
  border-radius: 20px;
}

/* Demo Tabs */
.tour-demo__tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.tour-demo__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.tour-demo__tab:hover {
  border-color: var(--color-primary);
  color: var(--color-text);
}

.tour-demo__tab.is-active {
  background: var(--color-primary-subtle);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.tour-demo__tab-icon {
  font-size: 18px;
}

.tour-demo__content {
  display: none;
}

.tour-demo__content.is-active {
  display: block;
}

@media (max-width: 768px) {
  .tour-section {
    padding: var(--space-10) var(--space-4);
  }

  .tour-hero {
    padding: var(--space-8) var(--space-4) var(--space-10);
  }

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

  .tour-feature {
    padding: var(--space-6);
  }
}

/* Usecase Carousel */
.usecase-carousel {
  position: relative;
  margin-top: var(--space-6);
}

.usecase-carousel__slides {
  position: relative;
  overflow: hidden;
}

.usecase-carousel__wrapper {
  display: flex;
  transition: transform 0.3s ease-out;
  touch-action: pan-y pinch-zoom;
}

.usecase-carousel__wrapper.is-dragging {
  transition: none;
}

.usecase-carousel__arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-3);
  pointer-events: none;
  z-index: 10;
}

.usecase-carousel__nav {
  width: 36px;
  height: 80px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.usecase-carousel__nav:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.usecase-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-4);
  margin-top: var(--space-2);
}

.usecase-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.usecase-carousel__dot:hover {
  background: rgba(14, 165, 233, 0.3);
}

.usecase-carousel__dot.is-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .usecase-carousel__nav {
    width: 32px;
    height: 60px;
  }
}

/* Inline Page Previews */
.usecase-preview {
  flex: 0 0 100%;
  min-width: 100%;
}

.usecase-preview__container {
  background: var(--color-surface);
  border: 2px solid var(--color-primary);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.usecase-preview__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
  background: rgba(14, 165, 233, 0.05);
}

.usecase-preview__header-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.usecase-preview__toolbar {
  display: none;
}

.usecase-preview__toolbar-divider {
  width: 1px;
  height: 20px;
  background: var(--color-border);
  margin: 0 6px;
}

.usecase-preview__toolbar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: transparent;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.15s;
}

.usecase-preview__toolbar-btn:hover {
  background: var(--color-background-secondary);
  color: var(--color-text);
}

.usecase-preview__toolbar-btn--active {
  background: var(--color-background-secondary);
  color: var(--color-primary);
}

.usecase-preview__toolbar-group {
  display: flex;
  align-items: center;
  gap: 2px;
}

.usecase-preview__toolbar-action {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  border: none;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}

.usecase-preview__toolbar-action--save {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.usecase-preview__toolbar-action--publish {
  background: var(--color-primary);
  color: white;
}

.usecase-preview__toolbar-action--publish:hover {
  background: #0284c7;
}

.usecase-preview__icon {
  font-size: 28px;
}

.usecase-preview__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.usecase-preview__subtitle {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin: 2px 0 0 0;
}

.usecase-preview__body {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: var(--color-background-secondary);
}

.usecase-preview__content {
  padding: var(--space-4);
}

/* Fade overlay - hidden when fully expanded */
.usecase-preview__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-background-secondary));
  pointer-events: none;
}

/* Preview blocks - compact style */
.pv-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: var(--space-3);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pv-block__type {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  opacity: 0.7;
  margin-bottom: 6px;
}

.pv-block__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 4px 0;
}

.pv-block__text {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.pv-block__placeholder {
  height: 10px;
  background: var(--color-border);
  border-radius: 4px;
  margin-top: 8px;
}

.pv-block__placeholder--short {
  width: 60%;
}

.pv-block__placeholder--medium {
  width: 80%;
}

.pv-block__placeholder--code {
  height: 60px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
}

.pv-block__placeholder--video {
  height: 80px;
  background: linear-gradient(135deg, var(--color-background-secondary), var(--color-border));
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-block__placeholder--video::after {
  content: '';
  width: 32px;
  height: 32px;
  background: var(--color-primary-subtle);
  border-radius: 50%;
}

.pv-block__placeholder--gallery {
  height: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.pv-block__placeholder--gallery::before,
.pv-block__placeholder--gallery::after {
  content: '';
  background: var(--color-surface);
  border-radius: 6px;
}

.pv-gallery__item {
  background: var(--color-surface);
  border-radius: 6px;
}

.pv-block__placeholder--booking {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.pv-block__slot {
  flex: 1;
  height: 28px;
  background: var(--color-surface);
  border-radius: 6px;
}

/* Video block */
.pv-block--video {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-color: #334155;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: 10px;
}

.pv-block--video .pv-play {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.pv-block--video .pv-meta {
  flex: 1;
}

.pv-block--video .pv-meta__title {
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin: 0;
}

.pv-block--video .pv-meta__duration {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin: 2px 0 0 0;
}

/* Gallery block */
.pv-gallery {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.pv-gallery__item {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-border) 100%);
  border-radius: 6px;
  flex-shrink: 0;
}

/* Developer thumbnails - code/terminal style */
.pv-gallery--dev .pv-gallery__item {
  width: 80px;
  height: 55px;
  border-radius: 4px;
  border: 1px solid #313244;
}

/* Travel thumbnails - polaroid style */
.pv-gallery--travel .pv-gallery__item {
  width: 75px;
  height: 90px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Chef thumbnails - circular dish style */
.pv-gallery--chef .pv-gallery__item {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid rgba(251, 191, 36, 0.3);
}

/* Chef Recipe Card - Professional Layout */
.pv-recipe {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.pv-recipe__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  padding: 16px;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.pv-recipe__desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.pv-recipe__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(251, 191, 36, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pv-recipe__info {
  text-align: right;
}

.pv-recipe__info-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 12px;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.pv-recipe__info-item:last-child {
  margin-bottom: 0;
}

.pv-recipe__info-item svg {
  flex-shrink: 0;
}

.pv-recipe__info-value {
  font-weight: 600;
  color: var(--color-text);
}

.pv-recipe__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pv-recipe__ingredients {
  padding: 16px;
  border-right: 1px solid var(--color-border);
}

.pv-recipe__ingredients-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pv-recipe__ingredients-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pv-recipe__ingredients-list li {
  font-size: 12px;
  color: var(--color-text-secondary);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pv-recipe__ingredients-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  flex-shrink: 0;
}

.pv-recipe__video {
  position: relative;
  min-height: 160px;
}

.pv-recipe__video-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pv-recipe__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.pv-recipe__video-play svg {
  margin-left: 3px;
}

.pv-recipe__steps {
  padding: 16px;
}

.pv-recipe__steps-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pv-recipe__step {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.pv-recipe__step:last-child {
  margin-bottom: 0;
}

.pv-recipe__step-num {
  width: 24px;
  height: 24px;
  background: rgba(251, 191, 36, 0.2);
  color: rgb(251, 191, 36);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.pv-recipe__step p {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* === DEVELOPER - Project Card === */
.pv-project {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.pv-project__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.pv-project__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.pv-project__title svg {
  color: var(--color-text-secondary);
}

.pv-project__stats {
  display: flex;
  gap: 12px;
}

.pv-project__stat {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.pv-project__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pv-project__tech {
  padding: 14px 16px;
  border-right: 1px solid var(--color-border);
}

.pv-project__tech-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
}

.pv-project__tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pv-project__tech-badge {
  padding: 4px 10px;
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.pv-project__terminal {
  background: #0d1117;
  padding: 12px;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 11px;
  color: #8b949e;
  line-height: 1.6;
}

.pv-project__terminal-prompt {
  color: #58a6ff;
}

.pv-project__terminal-cmd {
  color: #c9d1d9;
}

.pv-project__terminal-output {
  color: #7ee787;
}

.pv-project__api {
  padding: 14px 16px;
  border-top: 1px solid var(--color-border);
}

.pv-project__api-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px 0;
}

.pv-project__endpoint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--color-surface);
  border-radius: 6px;
  margin-bottom: 6px;
}

.pv-project__endpoint:last-child {
  margin-bottom: 0;
}

.pv-project__method {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}

.pv-project__method--get { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.pv-project__method--post { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.pv-project__method--put { background: rgba(251, 191, 36, 0.2); color: #fbbf24; }

.pv-project__path {
  font-size: 12px;
  color: var(--color-text-secondary);
  font-family: 'SF Mono', Monaco, monospace;
}

/* === TRAVEL - Blog Post Card === */
.pv-travel {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.pv-travel__hero {
  position: relative;
  height: 140px;
}

.pv-travel__hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.pv-travel__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.pv-travel__location {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: white;
}

.pv-travel__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.pv-travel__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pv-travel__meta-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.pv-travel__meta-label {
  font-size: 10px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.pv-travel__content {
  padding: 14px 16px;
}

.pv-travel__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 8px 0;
}

.pv-travel__excerpt {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.pv-travel__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pv-travel__tag {
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: 12px;
  font-size: 11px;
}

/* === TRAINER - Course Card === */
.pv-course {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.pv-course__header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.pv-course__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 10px 0;
}

.pv-course__progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pv-course__progress-bar {
  flex: 1;
  height: 6px;
  background: var(--color-surface);
  border-radius: 3px;
  overflow: hidden;
}

.pv-course__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  border-radius: 3px;
}

.pv-course__progress-text {
  font-size: 12px;
  font-weight: 600;
  color: #a78bfa;
}

.pv-course__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pv-course__video {
  position: relative;
  min-height: 120px;
  border-right: 1px solid var(--color-border);
}

.pv-course__video-thumb {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1e2e, #2d2d3d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-course__video-play {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-course__video-play svg {
  margin-left: 2px;
}

.pv-course__video-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  padding: 4px 8px;
  background: rgba(0,0,0,0.7);
  border-radius: 4px;
  font-size: 10px;
  color: white;
}

.pv-course__curriculum {
  padding: 12px;
}

.pv-course__curriculum-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.pv-course__lesson {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 12px;
  color: var(--color-text-secondary);
}

.pv-course__lesson--done {
  color: var(--color-text);
}

.pv-course__lesson-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-course__lesson--done .pv-course__lesson-check {
  background: #22c55e;
  border-color: #22c55e;
}

.pv-course__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 12px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.pv-course__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pv-course__stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
}

.pv-course__stat-label {
  font-size: 10px;
  color: var(--color-text-secondary);
}

/* === CONSULTANT - Case Study Card === */
.pv-case {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.pv-case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--color-border);
}

.pv-case__metric {
  padding: 16px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.pv-case__metric:last-child {
  border-right: none;
}

.pv-case__metric-value {
  font-size: 22px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 4px;
}

.pv-case__metric-label {
  font-size: 11px;
  color: var(--color-text-secondary);
}

.pv-case__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.pv-case__section {
  padding: 14px 16px;
}

.pv-case__section:first-child {
  border-right: 1px solid var(--color-border);
}

.pv-case__section-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
}

.pv-case__section-text {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.pv-case__timeline {
  padding: 14px 16px;
  border-top: 1px solid var(--color-border);
}

.pv-case__timeline-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

.pv-case__timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.pv-case__timeline-steps::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--color-border);
}

.pv-case__timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.pv-case__timeline-dot {
  width: 24px;
  height: 24px;
  background: var(--color-surface);
  border: 2px solid #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-case__timeline-dot--done {
  background: #22c55e;
}

.pv-case__timeline-label {
  font-size: 10px;
  color: var(--color-text-secondary);
  text-align: center;
}

/* Code block */
.pv-block--code {
  background: #1e1e2e;
  border-color: #313244;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 12px;
  color: #a6adc8;
  line-height: 1.5;
}

.pv-block--code .hl-kw { color: #cba6f7; }
.pv-block--code .hl-fn { color: #89b4fa; }
.pv-block--code .hl-str { color: #a6e3a1; }
.pv-block--code .hl-cm { color: #6c7086; }

/* Quiz block */
.pv-block--quiz {
  border-color: rgba(139, 92, 246, 0.3);
}

.pv-block--quiz .pv-block__type {
  color: #a78bfa;
}

.pv-quiz__options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.pv-quiz__question {
  font-size: 12px;
  color: var(--color-text);
  margin: 8px 0 6px 0;
  font-weight: 500;
}

.pv-quiz__opt {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--color-text);
}

/* Booking block */
.pv-block--booking {
  border-color: rgba(34, 197, 94, 0.3);
}

.pv-block--booking .pv-block__type {
  color: #4ade80;
}

.pv-slots {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.pv-slot {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--color-text);
}

/* Pricing block */
.pv-block--pricing {
  border-color: rgba(251, 191, 36, 0.3);
}

.pv-block--pricing .pv-block__type {
  color: #fbbf24;
}

.pv-pricing {
  display: flex;
  gap: var(--space-3);
  margin-top: 8px;
}

.pv-pricing__item {
  flex: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-3);
  text-align: center;
}

.pv-pricing__name {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin: 0 0 4px 0;
}

.pv-pricing__amount {
  font-size: 18px;
  font-weight: 700;
  color: #fbbf24;
}

.pv-pricing__period {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* Gallery block */
.pv-block--gallery {
  border-color: rgba(236, 72, 153, 0.3);
}

.pv-block--gallery .pv-block__type {
  color: #f472b6;
}

/* Map block */
.pv-block--map {
  border-color: rgba(59, 130, 246, 0.3);
}

.pv-block--map .pv-block__type {
  color: #60a5fa;
}

.pv-block__placeholder--map {
  height: 80px;
  background: linear-gradient(135deg, #1e3a5f, #1e4976);
  border-radius: 4px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.pv-block__placeholder--map::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  top: 30%;
  left: 40%;
}

/* Video block */
.pv-block--video {
  border-color: rgba(239, 68, 68, 0.3);
}

.pv-block--video .pv-block__type {
  color: #f87171;
}

/* Code preview */
.pv-code {
  background: #1e1e2e;
  border-radius: 6px;
  padding: 10px 12px;
  margin-top: 8px;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-size: 11px;
  line-height: 1.5;
  color: #cdd6f4;
  overflow: hidden;
}

.pv-code .hl-kw { color: #cba6f7; }
.pv-code .hl-fn { color: #89b4fa; }
.pv-code .hl-str { color: #a6e3a1; }
.pv-code .hl-num { color: #fab387; }

/* Video preview */
.pv-video {
  background: linear-gradient(135deg, #1e1e2e, #2d2d3d);
  border-radius: 6px;
  padding: 20px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pv-video__play {
  width: 36px;
  height: 36px;
  background: rgba(239, 68, 68, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  padding-left: 3px;
}

.pv-video__label {
  font-size: 12px;
  color: var(--color-text-secondary);
}

/* Gallery preview */
.pv-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.pv-gallery__img {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* Map preview */
.pv-map {
  height: 80px;
  background: linear-gradient(135deg, #1e3a5f, #1e4976);
  border-radius: 6px;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.pv-map__pin {
  position: absolute;
  top: 30%;
  left: 45%;
  font-size: 18px;
}

.pv-map__label {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}

/* Row/Column layouts */
.pv-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.pv-row:last-child {
  margin-bottom: 0;
}

.pv-col {
  flex: 1;
}

.pv-col--60 { flex: 0 0 58%; }
.pv-col--40 { flex: 0 0 38%; }
.pv-col--50 { flex: 0 0 48%; }

/* Page title */
.pv-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px 0;
}

/* Hero image */
.pv-hero {
  height: 100px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 12px;
}

/* Info box */
.pv-info {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 12px;
}

.pv-info__row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

.pv-info__row:last-child {
  margin-bottom: 0;
}

.pv-info__value {
  color: var(--color-text);
  font-weight: 500;
}

/* List items */
.pv-list {
  font-size: 11px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.pv-list__item {
  margin-bottom: 4px;
}

.pv-list__item::before {
  content: '•';
  margin-right: 6px;
  color: var(--color-primary);
}

/* Metrics */
.pv-metrics {
  display: flex;
  gap: 12px;
}

.pv-metric {
  text-align: center;
  flex: 1;
}

.pv-metric__value {
  font-size: 20px;
  font-weight: 700;
  color: #22c55e;
}

.pv-metric__label {
  font-size: 10px;
  color: var(--color-text-secondary);
}

/* ===== BEAUTIFUL PAGE RESULTS ===== */
.pv-page {
  min-height: 100%;
}

.pv-page__hero {
  padding: 24px 20px;
  margin: -16px -16px 16px -16px;
  border-radius: 0;
}

.pv-page__hero--dev {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
}

.pv-page__hero--travel {
  background: linear-gradient(135deg, #065f46 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}

.pv-page__hero--trainer {
  background: linear-gradient(135deg, #5b21b6 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
}

.pv-page__hero--consultant {
  background: linear-gradient(135deg, #92400e 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.pv-page__hero--chef {
  background: linear-gradient(135deg, #9f1239 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(244, 63, 94, 0.3);
}

.pv-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.pv-page__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.pv-page__subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.pv-section {
  margin-bottom: 14px;
  padding: 0 4px;
}

.pv-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Video card */
.pv-video-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--color-surface);
  border-radius: 10px;
  margin: 0 4px;
}

.pv-video-card__thumb {
  width: 80px;
  height: 50px;
  background: linear-gradient(135deg, #1e1e2e, #2d2d3d);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pv-video-card__play {
  width: 28px;
  height: 28px;
  background: rgba(239, 68, 68, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  padding-left: 2px;
}

.pv-video-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.pv-video-card__title {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
}

.pv-video-card__duration {
  font-size: 11px;
  color: var(--color-text-secondary);
}

/* Photo grid */
.pv-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  margin: 0 4px 14px;
}

.pv-photos--3col {
  grid-template-columns: repeat(3, 1fr);
}

.pv-photo {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: 8px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden;
}

.pv-photo--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.pv-photo--featured {
  aspect-ratio: 16/9;
}

/* Stats row */
.pv-stats {
  display: flex;
  gap: 16px;
  padding: 14px;
  background: var(--color-surface);
  border-radius: 10px;
  margin: 0 4px 14px;
}

.pv-stat {
  text-align: center;
  flex: 1;
}

.pv-stat__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.pv-stat__value--green { color: #22c55e; }
.pv-stat__value--yellow { color: #fbbf24; }
.pv-stat__value--purple { color: #a78bfa; }

.pv-stat__label {
  font-size: 10px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Card grid */
.pv-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 4px 14px;
}

.pv-card {
  background: var(--color-surface);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--color-border);
}

.pv-card--featured {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
}

.pv-card__label {
  font-size: 10px;
  color: var(--color-text-secondary);
  margin-bottom: 4px;
}

.pv-card__value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
}

.pv-card__value small {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-secondary);
}

/* Inline list */
.pv-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 4px 14px;
}

.pv-inline-list__item {
  padding: 6px 12px;
  background: var(--color-surface);
  border-radius: 20px;
  font-size: 11px;
  color: var(--color-text);
}

/* Map card */
.pv-map-card {
  height: 80px;
  background: linear-gradient(135deg, #1e3a5f, #0c4a6e);
  border-radius: 10px;
  margin: 0 4px 14px;
  position: relative;
  overflow: hidden;
}

.pv-map-card::before {
  content: '📍';
  position: absolute;
  top: 30%;
  left: 50%;
  font-size: 20px;
}

.pv-map-card__label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Real images */
.pv-img-container {
  margin: 0 4px 14px;
  border-radius: 10px;
  overflow: hidden;
}

.pv-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.pv-img--hero {
  height: 120px;
  object-fit: cover;
}

.pv-img-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6px;
  margin: 0 4px 14px;
}

.pv-img-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.pv-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.pv-img-grid__main {
  grid-row: span 2;
}

.pv-img-grid__main img {
  height: 100%;
}

/* Compact header */
.pv-compact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  margin: -16px -16px 10px -16px;
  border-radius: 0;
}

.pv-compact-header--dev { background: linear-gradient(135deg, #1e3a5f, #0f172a); border-bottom: 1px solid rgba(59,130,246,0.3); }
.pv-compact-header--travel { background: linear-gradient(135deg, #065f46, #0f172a); border-bottom: 1px solid rgba(16,185,129,0.3); }
.pv-compact-header--trainer { background: linear-gradient(135deg, #5b21b6, #0f172a); border-bottom: 1px solid rgba(139,92,246,0.3); }
.pv-compact-header--consultant { background: linear-gradient(135deg, #92400e, #0f172a); border-bottom: 1px solid rgba(251,191,36,0.3); }
.pv-compact-header--chef { background: linear-gradient(135deg, #9f1239, #0f172a); border-bottom: 1px solid rgba(244,63,94,0.3); }

.pv-compact-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pv-compact-subtitle {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.pv-compact-header__stats {
  display: flex;
  gap: 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.8);
}

.pv-compact-header__stats span {
  background: rgba(255,255,255,0.15);
  padding: 3px 6px;
  border-radius: 4px;
}

/* Rich intro text */
.pv-intro {
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 4px 12px;
}

.pv-intro strong {
  color: var(--color-text);
}

.pv-intro em {
  color: var(--color-primary);
  font-style: normal;
}

/* Timeline */
.pv-timeline {
  position: relative;
  padding-left: 24px;
}

.pv-timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(59,130,246,0.3));
  border-radius: 2px;
}

.pv-timeline__day {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 12px 0 8px 0;
  padding: 6px 10px;
  background: linear-gradient(90deg, rgba(59,130,246,0.3), transparent);
  border-radius: 4px;
  margin-left: -6px;
  position: relative;
}

.pv-timeline__day:first-child {
  margin-top: 0;
}

.pv-timeline__day::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 2px solid var(--color-background-secondary);
}

.pv-timeline__item {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin: 6px 0;
  padding: 4px 0;
  position: relative;
  padding-left: 0;
}

.pv-timeline__item::before {
  content: '';
  position: absolute;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: rgba(59,130,246,0.5);
  border-radius: 50%;
}

.pv-timeline__time {
  display: inline-block;
  min-width: 58px;
  padding: 2px 6px;
  margin-right: 4px;
  background: rgba(59,130,246,0.2);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 4px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 10px;
}

/* Image with frame and expand */
.pv-image-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
}

.pv-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pv-image-frame__expand {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.6);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pv-image-frame__expand svg {
  width: 14px;
  height: 14px;
  stroke: white;
  stroke-width: 2;
}

/* Two column layout */
.pv-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

/* Two column layout - code variant (code editor slightly wider) */
.pv-two-col--code {
  grid-template-columns: 1.1fr 1fr;
}

/* Three column layout */
.pv-three-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 16px;
  align-items: start;
}

.pv-small-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pv-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 11px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.pv-text-sm {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin: 0 0 6px 0;
  line-height: 1.5;
}

/* Code compact */
.pv-code-compact {
  background: #1e1e2e;
  border-radius: 6px;
  padding: 10px;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 10px;
  line-height: 1.5;
  color: #cdd6f4;
  margin: 0 4px 12px;
  overflow: hidden;
}

/* Code editor */
.pv-code-editor {
  background: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'Consolas', 'Monaco', monospace;
}

.pv-code-editor__header {
  background: #2d2d2d;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.pv-code-editor__dots {
  display: flex;
  gap: 4px;
}

.pv-code-editor__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pv-code-editor__dot--red { background: #ff5f56; }
.pv-code-editor__dot--yellow { background: #ffbd2e; }
.pv-code-editor__dot--green { background: #27ca40; }

.pv-code-editor__filename {
  font-size: 10px;
  color: #888;
  margin-left: 8px;
}

.pv-code-editor__body {
  padding: 8px 0;
  font-size: 10px;
  line-height: 1.5;
}

.pv-code-editor__line {
  display: flex;
  padding: 1px 12px;
}

.pv-code-editor__line--add {
  background: rgba(46, 160, 67, 0.15);
}

.pv-code-editor__line--remove {
  background: rgba(248, 81, 73, 0.15);
}

.pv-code-editor__gutter {
  width: 32px;
  color: #555;
  text-align: right;
  padding-right: 12px;
  user-select: none;
  flex-shrink: 0;
}

.pv-code-editor__symbol {
  width: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.pv-code-editor__symbol--add { color: #7ee787; }
.pv-code-editor__symbol--remove { color: #ffa198; }

.pv-code-editor__code {
  color: #d4d4d4;
  white-space: pre;
}

.pv-code-editor__line--add .pv-code-editor__code { color: #7ee787; }
.pv-code-editor__line--remove .pv-code-editor__code { color: #ffa198; opacity: 0.7; }

/* Syntax highlighting */
.ce-kw { color: #c586c0; }
.ce-fn { color: #dcdcaa; }
.ce-str { color: #ce9178; }
.ce-num { color: #b5cea8; }
.ce-cmt { color: #6a9955; }
.ce-prop { color: #9cdcfe; }
.ce-const { color: #4fc1ff; }

/* Music Player */
.pv-player {
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.pv-player__album {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.pv-player__cover {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.pv-player__info {
  flex: 1;
  min-width: 0;
}

.pv-player__title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-player__artist {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 8px;
}

.pv-player__waveform {
  height: 32px;
  background: rgba(0,0,0,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 8px;
  overflow: hidden;
}

.pv-player__bar {
  flex: 1;
  background: linear-gradient(to top, #22c55e, #4ade80);
  border-radius: 1px;
  min-width: 2px;
  max-width: 3px;
}

.pv-player__bar--dim {
  background: rgba(255,255,255,0.2);
}

.pv-player__progress {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 10px 0;
  position: relative;
}

.pv-player__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  border-radius: 2px;
}

.pv-player__progress-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

.pv-player__time {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.pv-player__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pv-player__btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 4px;
}

.pv-player__btn--play {
  width: 36px;
  height: 36px;
  background: #22c55e;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Playlist */
.pv-playlist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pv-playlist__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 11px;
}

.pv-playlist__item--active {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.pv-playlist__num {
  width: 18px;
  color: var(--color-text-tertiary);
  font-size: 10px;
  text-align: center;
}

.pv-playlist__item--active .pv-playlist__num {
  color: #22c55e;
}

.pv-playlist__name {
  flex: 1;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-playlist__item--active .pv-playlist__name {
  color: #16a34a;
  font-weight: 500;
}

.pv-playlist__duration {
  color: var(--color-text-tertiary);
  font-size: 10px;
}

.pv-playlist__preview-note {
  font-size: 9px;
  color: var(--color-text-tertiary);
  margin: 4px 0 0;
  font-style: italic;
}

.pv-playlist__buy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.pv-playlist__buy-text {
  font-size: 10px;
  color: var(--color-text-secondary);
  margin: 0;
}

.pv-playlist__buy-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pv-playlist__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.pv-playlist__buy-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--color-primary);
  text-decoration: none;
  padding: 4px 8px;
  background: var(--color-primary-subtle);
  border-radius: 4px;
  transition: background 0.2s;
}

.pv-playlist__buy-link:hover {
  background: rgba(14, 165, 233, 0.2);
}

.pv-player-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pv-streaming {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.pv-streaming__text {
  font-size: 10px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.pv-streaming__platforms {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pv-streaming__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-secondary);
  transition: all 0.2s;
}

.pv-streaming__link:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  transform: scale(1.1);
}

/* Services List */
.pv-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pv-services__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pv-services__item {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: var(--color-surface);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.pv-services__icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pv-services__icon--blue {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.pv-services__icon--green {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.pv-services__icon--purple {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.pv-services__content {
  flex: 1;
  min-width: 0;
}

.pv-services__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 3px;
}

.pv-services__desc {
  font-size: 9px;
  color: var(--color-text-secondary);
  margin: 0 0 5px;
  line-height: 1.4;
}

.pv-services__price {
  font-size: 10px;
  font-weight: 600;
  color: #fbbf24;
}

/* Calendar */
.pv-calendar {
  background: var(--color-surface);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--color-border);
}

.pv-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.pv-calendar__nav {
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  width: 22px;
  height: 22px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 10px;
}

.pv-calendar__month {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
}

.pv-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.pv-calendar__weekdays span {
  font-size: 8px;
  color: var(--color-text-tertiary);
  text-align: center;
  padding: 2px;
}

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

.pv-calendar__day {
  font-size: 9px;
  color: var(--color-text-secondary);
  text-align: center;
  padding: 8px 2px;
  border-radius: 4px;
  cursor: pointer;
}

.pv-calendar__day--other {
  color: var(--color-text-tertiary);
}

.pv-calendar__day--available {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-weight: 500;
}

.pv-calendar__day--selected {
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
}

.pv-calendar__slots {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
}

.pv-calendar__slots-title {
  font-size: 9px;
  color: var(--color-text-secondary);
  margin: 0 0 6px;
}

.pv-calendar__slot {
  display: inline-block;
  font-size: 9px;
  padding: 4px 8px;
  margin: 2px;
  background: var(--color-background-secondary);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text-secondary);
  cursor: pointer;
}

.pv-calendar__slot--selected {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
  color: #3b82f6;
}

.pv-calendar__book {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

/* Dish Hero */
.pv-dish-hero {
  display: flex;
  gap: 16px;
  margin-bottom: 4px;
}

.pv-dish-hero__image {
  flex-shrink: 0;
}

.pv-dish-hero__img {
  width: 140px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pv-dish-hero__content {
  flex: 1;
  min-width: 0;
}

.pv-dish-hero__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 6px 0 8px;
}

.pv-dish-hero__text {
  font-size: 10px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0 0 6px;
}

.pv-dish-hero__meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 9px;
  color: var(--color-text-tertiary);
}

.pv-dish-hero__meta strong {
  color: #f97316;
}

/* Recipe */
.pv-recipe {
  background: var(--color-surface);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid var(--color-border);
}

.pv-recipe__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 10px;
}

.pv-recipe__title svg {
  color: #f97316;
}

.pv-recipe__section {
  margin-bottom: 10px;
}

.pv-recipe__section:last-child {
  margin-bottom: 0;
}

.pv-recipe__subtitle {
  font-size: 9px;
  font-weight: 600;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}

.pv-recipe__list {
  margin: 0;
  padding: 0 0 0 14px;
  font-size: 9px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.pv-recipe__list li {
  margin-bottom: 2px;
}

.pv-recipe__list li::marker {
  color: #f97316;
}

/* Video Player */
.pv-video {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pv-video__thumbnail {
  position: relative;
  cursor: pointer;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.pv-video__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.pv-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}

.pv-video__thumbnail:hover .pv-video__play {
  background: rgba(234, 88, 12, 0.9);
  border-color: #f97316;
  transform: translate(-50%, -50%) scale(1.1);
}

.pv-video__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
}

.pv-video__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  padding: 8px 10px;
  width: 100%;
}

.pv-video__progress {
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin-bottom: 6px;
}

.pv-video__progress-bar {
  width: 0%;
  height: 100%;
  background: #f97316;
  border-radius: 2px;
}

.pv-video__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pv-video__btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 2px;
}

.pv-video__btn--right {
  margin-left: auto;
}

.pv-video__btn--right + .pv-video__btn--right {
  margin-left: 0;
}

.pv-video__time {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
}

.pv-video__caption {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 8px;
  margin: 0;
  background: #111;
  width: 100%;
}

/* Separator */
.pv-separator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  padding: 10px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pv-separator__icon {
  font-size: 16px;
}

.pv-separator__text {
  font-size: 11px;
  font-weight: 600;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Cooking Details */
.pv-cooking-details {
  padding-top: 4px;
}

.pv-cooking-details__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px;
}

.pv-cooking-details__subtitle {
  font-size: 11px;
  font-weight: 600;
  color: #f97316;
  margin: 12px 0 6px;
}

.pv-cooking-details__text {
  font-size: 10px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 8px;
}

.pv-cooking-details__text strong {
  color: var(--color-text);
}

.pv-cooking-details__text em {
  color: #fbbf24;
  font-style: italic;
}

/* Step progress */
.pv-step-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pv-step-progress__indicator {
  display: flex;
  gap: 4px;
}

.pv-step-progress__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.pv-step-progress__dot--done {
  background: #22c55e;
}

.pv-step-progress__dot--current {
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.3);
}

.pv-step-progress__label {
  font-size: 11px;
  color: var(--color-text-secondary);
}

.pv-step-progress__label strong {
  color: var(--color-primary);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

/* Tablet - 768px and below */
@media (max-width: 768px) {
  /* Tour Sections */
  .tour-section {
    padding: var(--space-10) var(--space-4);
  }

  .tour-container {
    max-width: 100%;
    padding: 0 var(--space-2);
  }

  .tour-section__title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .tour-section__subtitle {
    font-size: 16px;
  }

  /* Hero */
  .tour-hero {
    padding: var(--space-8) var(--space-4) var(--space-10);
  }

  .tour-hero__title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .tour-hero__subtitle {
    font-size: 16px;
  }

  .tour-hero__blob {
    width: 300px;
    height: 300px;
  }

  /* Problem Cards */
  .tour-problems {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .tour-problem {
    padding: var(--space-4);
  }

  /* Features */
  .tour-features {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .tour-feature {
    padding: var(--space-5);
  }

  /* Pillars - Mobile interleaved layout */
  .pillars-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
  }

  .tour-pillars {
    display: contents;
  }

  .tour-pillar {
    padding: var(--space-3);
  }

  .tour-pillar::after {
    display: none;
  }

  /* Show all previews on mobile and interleave with cards */
  .pillar-preview {
    display: block !important;
    margin-top: 0;
  }

  /* Order for interleaving: card1, preview1, card2, preview2, card3, preview3 */
  .tour-pillar[data-pillar="job-board"] { order: 1; }
  [data-pillar-preview="job-board"] { order: 2; }
  .tour-pillar[data-pillar="pro-network"] { order: 3; }
  [data-pillar-preview="pro-network"] { order: 4; }
  .tour-pillar[data-pillar="projects"] { order: 5; }
  [data-pillar-preview="projects"] { order: 6; }

  /* Pillar Preview Carousel */
  .pillar-preview__container {
    border-width: 1px;
  }

  .pillar-preview__title {
    font-size: 16px;
  }

  .pillar-preview__text {
    font-size: 14px;
  }

  .pillar-preview__arrow {
    width: 32px;
    height: 60px;
  }

  /* Use Cases Grid */
  .tour-usecases {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .tour-usecase {
    padding: var(--space-3);
  }

  .tour-usecase::after {
    display: none;
  }

  .tour-usecase__icon {
    font-size: 24px;
  }

  .tour-usecase__title {
    font-size: 13px;
  }

  .tour-usecase__desc {
    font-size: 11px;
  }

  /* Demo Layout */
  .tour-demo {
    padding: var(--space-4);
  }

  .tour-demo__layout {
    grid-template-columns: 1fr;
  }

  .tour-demo__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .tour-demo__tabs {
    width: 100%;
    justify-content: center;
  }

  /* Comparison Table */
  .tour-differences {
    gap: var(--space-3);
  }

  .tour-diff {
    grid-template-columns: 1fr;
  }

  .tour-diff__old,
  .tour-diff__new {
    padding: var(--space-4);
  }

  /* CTA Section */
  .tour-cta__box {
    padding: var(--space-8) var(--space-4);
  }

  .tour-cta__title {
    font-size: 24px;
  }

  .tour-cta__text {
    font-size: 16px;
  }

  .tour-cta__btn {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  /* Preview Containers */
  .usecase-preview__container {
    border-radius: 12px;
  }

  .usecase-preview__header {
    padding: var(--space-3);
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .usecase-preview__header-info {
    gap: 8px;
  }

  .usecase-preview__icon {
    font-size: 24px;
    width: 36px;
    height: 36px;
  }

  .usecase-preview__title {
    font-size: 14px;
  }

  .usecase-preview__subtitle {
    font-size: 11px;
  }

  .usecase-preview__header-actions {
    gap: 4px;
  }

  .usecase-preview__action {
    width: 28px;
    height: 28px;
  }

  .usecase-preview__device-toggle {
    gap: 2px;
  }

  .usecase-preview__device {
    width: 24px;
    height: 24px;
  }

  .usecase-preview__body {
    padding: var(--space-3);
  }

  /* Preview Common Elements */
  .pv-compact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .pv-compact-header__text {
    width: 100%;
  }

  .pv-compact-header__meta {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .pv-tag {
    font-size: 10px;
    padding: 4px 8px;
  }

  .pv-compact-title {
    font-size: 18px;
  }

  .pv-compact-subtitle {
    font-size: 13px;
  }

  /* Two and Three Column Layouts - Override inline styles */
  .pv-two-col,
  .pv-three-col {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: var(--space-4) !important;
    align-items: stretch !important;
  }

  /* Ensure children of multi-column layouts are full width */
  .pv-two-col > *,
  .pv-three-col > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Preview header toolbar */
  .usecase-preview__header {
    flex-wrap: wrap;
  }

  .usecase-preview__toolbar {
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
    justify-content: flex-start;
    margin-top: 8px;
  }

  .usecase-preview__toolbar-group {
    flex-shrink: 0;
  }

  .usecase-preview__toolbar-divider {
    display: none;
  }

  /* Image frames in preview */
  .pv-image-frame {
    width: 100% !important;
    max-width: 100% !important;
  }

  .pv-image-frame img {
    width: 100% !important;
    height: auto !important;
    max-height: 200px;
    object-fit: cover;
  }

  /* Timeline */
  .pv-timeline {
    padding-left: var(--space-3);
  }

  .pv-timeline__item {
    font-size: 12px;
    padding: 6px 0;
  }

  .pv-timeline__time {
    min-width: 50px;
    font-size: 11px;
  }

  /* Code Editor */
  .pv-code-editor {
    font-size: 11px;
  }

  .pv-code-editor__filename {
    font-size: 11px;
  }

  .pv-code-editor__body {
    padding: 8px;
    overflow-x: auto;
  }

  .pv-code-editor__line {
    white-space: pre;
  }

  /* Explanation */
  .pv-explanation {
    padding: var(--space-3);
  }

  .pv-explanation p {
    font-size: 12px !important;
  }

  /* Chef - Dish Hero */
  .pv-dish-hero {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .pv-dish-hero__image {
    width: 100%;
    margin-bottom: var(--space-3);
  }

  .pv-dish-hero__img {
    width: 100% !important;
    max-width: 280px;
    height: auto;
  }

  .pv-dish-hero__content {
    width: 100%;
  }

  .pv-dish-hero__title {
    font-size: 18px;
  }

  .pv-dish-hero__text {
    font-size: 12px;
    text-align: left;
  }

  .pv-dish-hero__meta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Music Preview */
  .pv-playlist {
    max-height: 200px;
  }

  .pv-playlist__item {
    padding: 8px;
  }

  .pv-playlist__name {
    font-size: 12px;
  }

  .pv-streaming__btn {
    padding: 8px 12px;
    font-size: 11px;
  }

  /* Consultant Preview */
  .pv-services {
    gap: var(--space-3);
  }

  .pv-service-card {
    padding: var(--space-3);
  }

  .pv-service-card__name {
    font-size: 14px;
  }

  .pv-service-card__desc {
    font-size: 12px;
  }

  .pv-service-card__price {
    font-size: 13px;
  }

  .pv-calendar {
    padding: var(--space-3);
  }

  .pv-calendar__book {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Chef Preview */
  .pv-recipe__image {
    width: 80px;
    height: 80px;
  }

  .pv-recipe__title {
    font-size: 18px;
  }

  .pv-recipe__desc {
    font-size: 13px;
  }

  .pv-recipe__meta {
    flex-wrap: wrap;
    gap: var(--space-2);
  }

  .pv-recipe__meta span {
    font-size: 11px;
  }

  .pv-ingredients {
    padding: var(--space-3);
  }

  .pv-ingredients__title {
    font-size: 14px;
  }

  .pv-ingredients__list li {
    font-size: 12px;
    padding: 4px 0;
  }

  /* Video placeholder */
  .pv-video-placeholder {
    min-height: 180px;
  }

  /* Register Section */
  .landing-register {
    padding: var(--space-8) var(--space-4);
  }

  .landing-register__content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .landing-register__form-card {
    padding: var(--space-4);
  }

  .landing-register__input {
    padding: 12px 14px;
    font-size: 14px;
  }

  .landing-register__submit {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Stats */
  .landing-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  .landing-stats__item {
    padding: var(--space-4);
  }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
  /* Tour Sections */
  .tour-section {
    padding: var(--space-8) var(--space-3);
  }

  .tour-section__title {
    font-size: 22px;
  }

  .tour-section__subtitle {
    font-size: 14px;
  }

  /* Hero */
  .tour-hero {
    padding: var(--space-6) var(--space-3) var(--space-8);
  }

  .tour-hero__title {
    font-size: 26px;
  }

  .tour-hero__subtitle {
    font-size: 14px;
  }

  .tour-hero__back {
    font-size: 13px;
  }

  /* Landing Hero Trust Items */
  .landing-hero__trust {
    flex-direction: column;
    gap: var(--space-2);
  }

  .landing-hero__trust-item {
    font-size: 13px;
  }

  /* Use Cases */
  .tour-usecases {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }

  .tour-usecase {
    padding: var(--space-2);
  }

  .tour-usecase__icon {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .tour-usecase__title {
    font-size: 11px;
  }

  .tour-usecase__desc {
    display: none;
  }

  /* Preview Header */
  .usecase-preview__header {
    padding: var(--space-2);
  }

  .usecase-preview__header-actions {
    display: none;
  }

  /* Hide toolbar on mobile */
  .usecase-preview__toolbar {
    display: none !important;
  }

  /* Show simplified save/publish buttons */
  .usecase-preview__toolbar-action--save,
  .usecase-preview__toolbar-action--publish {
    padding: 6px 10px;
    font-size: 11px;
  }

  /* Preview Body */
  .usecase-preview__body {
    padding: var(--space-2);
  }

  /* Column layouts - single column on mobile */
  .pv-two-col,
  .pv-three-col {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: var(--space-3) !important;
    align-items: stretch !important;
  }

  /* Ensure children of multi-column layouts are full width */
  .pv-two-col > *,
  .pv-three-col > * {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Image frames full width */
  .pv-image-frame {
    width: 100% !important;
    order: -1; /* Show image first on mobile */
  }

  .pv-image-frame img {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover;
    border-radius: 8px;
  }

  .pv-compact-title {
    font-size: 16px;
  }

  .pv-compact-subtitle {
    font-size: 12px;
  }

  .pv-compact-header__stats {
    gap: 8px;
  }

  .pv-compact-header__stats span {
    font-size: 11px;
    padding: 4px 8px;
  }

  /* Timeline */
  .pv-timeline {
    padding-left: 0;
    border-left: none;
  }

  .pv-timeline::before {
    display: none;
  }

  .pv-timeline__day {
    font-size: 12px;
    padding: 6px 10px;
  }

  .pv-timeline__item {
    font-size: 11px;
    padding: 4px 0;
  }

  /* Code Editor */
  .pv-code-editor {
    font-size: 10px;
  }

  .pv-code-editor__gutter {
    min-width: 20px;
  }

  /* Music */
  .pv-playlist {
    max-height: 150px;
  }

  .pv-album-art {
    width: 60px;
    height: 60px;
  }

  .pv-streaming {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
  }

  .pv-streaming__btn {
    justify-content: center;
  }

  /* Consultant - Services */
  .pv-services {
    gap: var(--space-2);
  }

  .pv-services__item {
    padding: var(--space-2);
  }

  .pv-services__name {
    font-size: 13px;
  }

  .pv-services__desc {
    font-size: 11px;
  }

  .pv-services__price {
    font-size: 12px;
  }

  /* Consultant - Calendar */
  .pv-calendar {
    padding: var(--space-3);
  }

  .pv-calendar__header {
    font-size: 13px;
  }

  .pv-calendar__weekdays {
    font-size: 10px;
  }

  .pv-calendar__day {
    font-size: 11px;
    padding: 4px;
  }

  .pv-calendar__slots {
    gap: 4px;
  }

  .pv-calendar__slot {
    font-size: 11px;
    padding: 6px 10px;
  }

  .pv-calendar__book {
    font-size: 13px;
    padding: 10px;
  }

  /* Chef - Dish Hero */
  .pv-dish-hero {
    flex-direction: column !important;
    gap: var(--space-3);
  }

  .pv-dish-hero__img {
    width: 100% !important;
    max-width: 200px;
    margin: 0 auto;
    display: block;
  }

  .pv-dish-hero__title {
    font-size: 16px;
    text-align: center;
  }

  .pv-dish-hero__text {
    font-size: 11px;
  }

  .pv-dish-hero__meta {
    font-size: 10px;
    justify-content: center;
  }

  /* Chef - Recipe */
  .pv-recipe {
    flex-direction: column;
    align-items: flex-start;
  }

  .pv-recipe__title {
    font-size: 14px;
  }

  .pv-recipe__subtitle {
    font-size: 11px;
  }

  .pv-recipe__list {
    font-size: 11px;
  }

  .pv-recipe__list li {
    padding: 4px 0;
  }

  /* Chef - Video */
  .pv-video {
    width: 100%;
  }

  .pv-video__thumbnail {
    height: 140px;
  }

  .pv-cooking-details {
    padding: var(--space-3);
  }

  .pv-cooking-details__title {
    font-size: 14px;
  }

  .pv-cooking-details__subtitle {
    font-size: 12px;
  }

  .pv-cooking-details__text {
    font-size: 11px;
  }

  /* Globe - Explanation sections */
  .pv-explanation {
    padding: var(--space-2);
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
  }

  .pv-explanation p {
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }

  .pv-explanation p:last-child {
    margin-bottom: 0 !important;
  }

  /* Description blocks */
  .pv-day-description {
    padding: var(--space-3);
  }

  .pv-day-description p {
    font-size: 12px !important;
  }

  /* CTA */
  .tour-cta__box {
    padding: var(--space-6) var(--space-3);
    border-radius: 16px;
  }

  .tour-cta__title {
    font-size: 20px;
  }

  .tour-cta__text {
    font-size: 14px;
  }

  /* Demo */
  .tour-demo {
    padding: var(--space-3);
    border-radius: 12px;
  }

  .tour-demo__tabs {
    gap: 4px;
  }

  .tour-demo__tab {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* Blocks */
  .tour-blocks {
    gap: var(--space-2);
  }

  .tour-block {
    padding: 6px 10px;
    font-size: 12px;
  }

  /* Pillar Cards */
  .tour-pillar {
    padding: var(--space-3);
  }

  .tour-pillar__icon {
    width: 48px;
    height: 48px;
  }

  .tour-pillar__title {
    font-size: 16px;
  }

  .tour-pillar__desc {
    font-size: 13px;
  }

  /* Pillar Preview */
  .pillar-preview__content {
    padding: var(--space-3);
  }

  .pillar-preview__title {
    font-size: 14px;
  }

  .pillar-preview__text {
    font-size: 12px;
  }

  .pillar-preview__nav {
    padding: var(--space-3);
  }

  /* Register */
  .landing-register__benefits {
    gap: var(--space-2);
  }

  .landing-register__benefit {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* Footer */
  .landing-footer {
    padding: var(--space-6) var(--space-3);
  }

  .landing-footer__content {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
}

/* Small Mobile - 360px and below */
@media (max-width: 360px) {
  .tour-section {
    padding: var(--space-6) var(--space-2);
  }

  .tour-hero__title {
    font-size: 22px;
  }

  .tour-usecases {
    grid-template-columns: 1fr 1fr;
  }

  .usecase-preview__title {
    font-size: 12px;
  }

  .pv-compact-title {
    font-size: 14px;
  }

  .tour-cta__title {
    font-size: 18px;
  }
}
