/* ================= HERO ================= */

/* ================= STORES HERO (SAME STYLE) ================= */

.stores-hero-v2{
  position: relative;
  padding: 7rem 1.5rem 7rem;
  text-align: center;
  overflow: hidden;

  background:
    radial-gradient(1200px 600px at 50% -20%, rgba(99,102,241,0.45), transparent 65%),
    radial-gradient(900px 520px at 10% 30%, rgba(139,92,246,0.35), transparent 60%),
    radial-gradient(900px 520px at 90% 40%, rgba(147,51,234,0.30), transparent 60%),
    linear-gradient(180deg, #e0e7ff 0%, #f1f5ff 100%);
}

/* мʼяка світлова форма справа (як на скріні) */
.stores-hero-v2::before{
  content:"";
  position:absolute;
  width: 45rem;
  height: 45rem;
  top: -16rem;
  right: -18rem;
  z-index: 0;

  background: radial-gradient(circle, rgba(124,58,237,0.22), transparent 65%);
  filter: blur(2px);
  opacity: 0.95;
}

/* друга форма зліва знизу */
.stores-hero-v2::after{
  content:"";
  position:absolute;
  width: 46rem;
  height: 46rem;
  bottom: -20rem;
  left: -20rem;
  z-index: 0;

  background: radial-gradient(circle, rgba(79,70,229,0.18), transparent 65%);
  filter: blur(2px);
  opacity: 0.9;
}

/* легкий grain (як в твоєму hero) */
.stores-hero-v2 .hero-grain{
  pointer-events:none;
  position:absolute;
  inset:0;
  z-index:0;
  opacity:0.12;

  background-image: radial-gradient(circle at 1px 1px, rgba(17,24,39,0.12) 1px, transparent 0);
  background-size: 0.875rem 0.875rem; /* 14px */
}

.stores-hero-content{
  position: relative;
  z-index: 1;
  max-width: 58rem;
  margin: 0 auto;
}



/* заголовок */
.stores-hero-v2 h1{
  font-size: 3.8rem;
  font-weight: 900;
  margin: 1.5rem 0 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #0f172a;
}

/* фіолетовий акцент як у скріні */
.stores-hero-v2 .accent{
  background: linear-gradient(90deg, #4f46e5 0%, #8b5cf6 45%, #9333ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* опис */
.stores-hero-v2 p{
  max-width: 46rem;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #64748b;
  margin: 0 auto;
}


/* responsive */
@media (max-width: 48rem){ /* 768px */
  .stores-hero-v2{
    padding: 6rem 1.25rem;
  }

  .stores-hero-v2 h1{
    font-size: 2.8rem;
  }

  .stores-hero-v2 p{
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .cta-btn{ transition: none; }
  .cta-btn--dark:hover,
  .cta-btn--ghost:hover{ transform: none; }
}


/* ================= STORES ================= */

.stores-section {
  padding: 7.5rem 1.25rem; /* 120px 20px */
}

.stores-grid {
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; /* 48px */
}

.store-card {
  background: #fff;
  border-radius: 1.25rem; /* 20px */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 0.75rem 1.5rem rgba(0,0,0,0.06),
    0 0.25rem 0.5rem rgba(0,0,0,0.04);
  transition: box-shadow 0.35s ease;
}

.store-card:hover {
  box-shadow:
    0 3rem 6rem rgba(0,0,0,0.22),
    0 1.5rem 3rem rgba(0,0,0,0.12);
}

.store-card--wide {
  grid-column: span 2;
  flex-direction: row;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card--wide .store-image {
  width: 50%;
}

.store-content {
  padding: 2.5rem; /* 40px */
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* 20px */
}

.store-content h2 {
  font-size: 2rem; /* 32px */
}

.store-desc {
  color: #555;
  line-height: 1.6;
}

.store-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.store-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
}

.store-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.7rem;
  background: rgba(124,58,237,0.08);
  color: #7c3aed;
  flex-shrink: 0;
}

.store-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}


.store-btn {
  margin-top: auto;
  padding: 0.875rem;
  background: #111;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 1rem;

  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.store-btn:hover {
  background: #0b0b0b;
  border-color: rgba(124,58,237,0.35);
  box-shadow:
    0 1.25rem 2.5rem rgba(0,0,0,0.18),
    0 0 0 0.0625rem rgba(124,58,237,0.22);
}

.store-btn:active {
  box-shadow: none;
}

.store-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 0.25rem rgba(124,58,237,0.25),
    0 1.25rem 2.5rem rgba(0,0,0,0.16);
}


/* ================= WHY EXPERIENCE ================= */

.why-experience {
  padding: 7rem 1.25rem;
  background: #f9fafb;
}

.why-experience-inner {
  max-width: 75rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-left h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
  line-height: 1.15;
}

.why-left p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 32rem;
}

/* Права частина */

.why-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-item span {
  font-size: 2.2rem;
  font-weight: 800;
  min-width: 3rem;

  background: linear-gradient(90deg, #4f46e5, #8b5cf6);
  -webkit-background-clip: text;
  color: transparent;
}



.why-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.why-item p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Адаптив */

@media (max-width: 1024px) {
  .why-experience-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-left {
    text-align: center;
  }

  .why-left p {
    margin: 0 auto;
  }
}

/* ====== REVEAL ON SCROLL (subtle) ====== */
.reveal {
  opacity: 0;
  transform: translateY(0.75rem);
  filter: blur(4px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.6s ease;
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* маленькі затримки для “каскаду” */
.reveal.delay-1 { transition-delay: 0.06s; }
.reveal.delay-2 { transition-delay: 0.12s; }
.reveal.delay-3 { transition-delay: 0.18s; }
.reveal.delay-4 { transition-delay: 0.24s; }
.reveal.delay-5 { transition-delay: 0.30s; }

/* повага до користувачів без анімацій */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}


/* ================= CTA ================= */

.stores-cta {
  background: #111827;
  color: #fff;
  padding: 7.5rem 1.25rem; /* 120px 20px */
  text-align: center;
}

.stores-cta h2 {
  font-size: 2.625rem; /* 42px */
  margin-bottom: 1rem; /* 16px */
}

.stores-cta p {
  font-size: 1.25rem; /* 20px */
  color: #ccc;
  margin-bottom: 2rem; /* 32px */
}

.cta-btn {
  background: #fff;
  color: #111;
  padding: 1rem 2.5rem;
  border-radius: 0.875rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;

  display: inline-block;

  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease,
    background 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-4px);

  background: #f9fafb;

  box-shadow:
    0 1.75rem 3.5rem rgba(0,0,0,0.35),
    0 0.5rem 1rem rgba(0,0,0,0.2);
}

.cta-btn:active {
  transform: translateY(-1px);
  box-shadow:
    0 0.75rem 1.5rem rgba(0,0,0,0.25);
}

.cta-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 0.25rem rgba(255,255,255,0.25),
    0 1.75rem 3.5rem rgba(0,0,0,0.3);
}

