/* ============================================
   Vimo Agency — Presentation Page
   ============================================ */

.presentation {
  scroll-snap-type: y proximity;
}

.presentation-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 2rem) 0 4rem;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.presentation-slide:first-child {
  min-height: 100vh;
}

.slide-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.slide-content--center {
  text-align: center;
}

.slide-content--center .section-header {
  margin-bottom: 3rem;
}

/* ---- Cover Slide ---- */

.slide-cover {
  text-align: center;
}

.slide-cover__logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.45));
}

.slide-cover__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slide-cover__tagline {
  margin-bottom: 1rem;
}

.slide-cover h1 {
  margin-bottom: 1rem;
}

.slide-cover p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.slide-cover__meta {
  margin-top: 3rem;
  font-size: var(--text-ui);
  color: var(--text-dim);
}

/* ---- About Slide ---- */

.about-slide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-width: 0;
}

.about-slide__grid > * {
  min-width: 0;
  max-width: 100%;
}

.about-slide__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-stat {
  padding: 1.5rem;
  text-align: center;
}

.about-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-400);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat__label {
  font-size: var(--text-caption);
  color: var(--text-muted);
}

/* ---- Services Slide ---- */

.presentation-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.presentation-service {
  padding: 2rem 1.5rem;
  text-align: center;
}

.presentation-service .icon-box {
  margin: 0 auto 1rem;
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
}

.presentation-service h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.presentation-service p {
  font-size: var(--text-ui);
}

/* ---- Creators Niches (Presentation) ---- */

.creators-niches {
  max-width: 700px;
  margin: 0 auto;
}

.creators-niches__intro {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.niches-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.niches-list li {
  padding: 0.875rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  font-family: var(--font-sans);
  font-size: var(--text-ui);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.niches-list li:hover {
  border-color: rgba(167, 139, 250, 0.2);
  color: #fff;
  background: var(--card-bg-hover);
}

.creators-niches__note {
  text-align: center;
  font-size: var(--text-body-sm);
}

/* ---- About Values (Presentation) ---- */

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
}

.about-value .icon-box {
  margin-bottom: 0;
  flex-shrink: 0;
}

.about-value h3 {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}

.about-value p {
  font-size: var(--text-body-sm);
}

/* ---- Why Us Slide ---- */

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-us-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
}

.why-us-item .icon-box {
  flex-shrink: 0;
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
}

.why-us-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}

.why-us-item p {
  font-size: var(--text-ui);
}

/* Process slide uses shared .process styles from style.css */

#slide-process .process__timeline--5 {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- Contact Slide ---- */

.slide-contact {
  text-align: center;
}

.slide-contact__info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.slide-contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.slide-contact__item .icon-box {
  margin-bottom: 0;
  width: 56px;
  height: 56px;
}

.slide-contact__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}

.slide-contact__value:hover {
  color: var(--purple-400);
}

.slide-contact__label {
  font-size: var(--text-caption);
  color: var(--text-dim);
}

#slide-contact .contact-cta__glow {
  opacity: 0.2;
}

/* ---- Slide Navigation Dots ---- */

.slide-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.slide-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.4;
  transition: all var(--transition);
  cursor: pointer;
}

.slide-nav__dot.active {
  background: var(--purple-500);
  opacity: 1;
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--purple-glow);
}

.slide-nav__dot:hover {
  opacity: 0.8;
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .niches-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .presentation-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-slide__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-slide__grid > * {
    width: 100%;
  }

  .about-slide__grid p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .about-value {
    padding: 1.25rem;
  }

  .presentation-slide {
    min-height: auto;
    padding: calc(var(--nav-height) + 2rem) 0 3rem;
    overflow-x: clip;
  }

  .slide-content {
    max-width: 100%;
    overflow: hidden;
  }

  .presentation-services {
    grid-template-columns: 1fr;
  }

  .niches-list {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }
}
