/* ============================================
   PRODUCT PAGE GLOBAL (LAIS Template)
   ============================================ */

/* --- 1. PRODUCT HERO --- */
.product-hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(135deg, rgba(49, 47, 133, 0.03) 0%, rgba(59, 171, 226, 0.05) 100%);
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.4;
  animation: float 15s infinite alternate ease-in-out;
}

.hero-blob--1 {
  width: 500px;
  height: 500px;
  background: rgba(59, 171, 226, 0.4);
  top: -20%;
  left: -10%;
}

.hero-blob--2 {
  width: 600px;
  height: 600px;
  background: rgba(49, 47, 133, 0.3);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-brand__logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.05));
}

.product-brand__badge {
  font-size: 12px;
  padding: 4px 12px;
  background: rgba(59, 171, 226, 0.1);
  border-radius: 30px;
  color: var(--color-secondary);
  font-weight: 600;
}

.product-hero__title {
  font-family: var(--font-logo);
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 0px;
  letter-spacing: -1px;
}

.product-hero__altname {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 20px;
  font-weight: 500;
}

.product-hero__subtitle {
  font-size: 20px;
  color: var(--color-gray);
  margin-bottom: 20px;
  font-weight: 500;
}

.product-hero__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  max-width: 550px;
  margin-bottom: 32px;
}

.product-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Визуал */
.product-visual {
    position: relative;
	width: 100%;
	height: 400px;
	transform-origin: center;
}

.product-visual__ring {
    position: absolute;
	border-radius: 50%;
	border: 3px dotted rgba(49, 47, 133, 0.2);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: spin 30s linear infinite;
	width: 350px;
	height: 350px;	
}

.product-visual__ring--2 {
    width: 480px;
	height: 480px;
	border-style: dashed;
	border-color: rgba(59, 171, 226, 0.1);
	animation-direction: reverse;
}

@keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }


.product-visual__img {
	position: absolute;
	z-index: 2;
	max-width: 400px;
	filter: drop-shadow(0 20px 30px rgba(49, 47, 133, 0.2));
	left: 5vw;
}

.floating {
  animation: float 4s infinite alternate ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-15px); }
}

/* --- 2. MECHANISM SECTION --- */
.mechanism__text p {
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.custom-list li ion-icon {
  font-size: 22px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.mechanism__schema img {
  max-width: 100%;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.05));
}

/* --- 3. BENEFITS CARDS --- */
.benefit-card {
  background: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 32px 24px;
  height: 100%;
  transition: var(--transition);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.benefit-card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 32px;
  box-shadow: var(--shadow-btn);
}

.benefit-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.benefit-card__desc {
  color: var(--color-gray);
  font-size: 14px;
  line-height: 1.5;
}

/* --- 4. INDICATIONS & TIMELINE --- */
.indications__list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.indications__list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 16px;
  color: var(--color-dark);
}

.indications__list li ion-icon {
  font-size: 24px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 20px;
}

.timeline__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline__marker {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-btn);
}

.timeline__content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.timeline__content p {
  color: var(--color-gray);
  line-height: 1.5;
}


/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .product-hero { padding: 40px 0 60px; }
  .product-hero__title { font-size: 42px; }
  .product-visual { min-height: 300px; }
  .cta-block__inner { padding: 48px 24px; }
  .cta-block__title { font-size: 28px; }
}

@media (max-width: 768px) {
  .product-hero__title { font-size: 32px; }
  .timeline__step { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cta-block__inner { border-radius: 24px; }
}

/* ============================================
   PRODUCT PAGE: SCIENCE
   ============================================ */
.science-card {
  display: flex; gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
  height: 100%;
}

.science-card:hover { border-color: var(--color-secondary); box-shadow: var(--shadow-sm); }
.science-card__icon { font-size: 40px; color: var(--color-primary); flex-shrink: 0; }
.science-card__body h4 { font-size: 16px; font-weight: 700; color: var(--color-dark); margin-bottom: 8px; }
.science-card__body p { font-size: 13px; color: var(--color-gray); margin-bottom: 16px; line-height: 1.5; }
.science-card__link { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--color-secondary); }

/* ============================================
   SHARED: GLASS CARD
   ============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.glass-card:hover {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-5px);
}


/* ============================================
   PRODUCT PAGE: DOCS
   ============================================ */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.doc-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.doc-card ion-icon { font-size: 48px; color: var(--color-primary); margin-bottom: 16px; }
.doc-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 16px; flex-grow: 1; }

/* ============================================
   PRODUCT PAGE: CTA BLOCK
   ============================================ */
.product-cta { padding: 60px 0; }

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: 24px;
  padding: 40px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(59, 171, 226, 0.2);
}

.cta-banner__content h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; color: #fff; }
.cta-banner__content p { font-size: 16px; opacity: 0.9; margin: 0; line-height: 1.5; max-width: 500px; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 12px; min-width: 250px; }

/* ============================================
   MEDIA QUERIES FOR PRODUCT PAGE
   ============================================ */
@media (max-width: 992px) {
  .product-hero__title { font-size: 42px; }
  .product-hero__visual { min-height: 300px; margin-top: 40px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 30px; }
  .cta-banner__actions { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 576px) {
  .product-hero__title { font-size: 36px; }
  .product-hero__actions { flex-direction: column; width: 100%; }
  .product-hero__actions .btn { width: 100%; }
  .product-about__list { gap: 16px; }
  .timeline::before { left: 15px; }
  .timeline__marker { width: 32px; height: 32px; font-size: 14px; box-shadow: 0 0 0 4px #f8fafc; }
  .timeline__step { gap: 12px; }
  .cta-banner__actions { flex-direction: column; }
}
