/* ===== COOPERATION PAGE STYLES ===== */

.cooperation-hero {
  background: linear-gradient(135deg, rgba(6, 6, 12, 0.98), rgba(1, 1, 3, 0.99));
  border-radius: 32px;
  padding: 6rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cooperation-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cooperation-hero .hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.cooperation-hero .hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
}

.cooperation-hero .hero-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cooperation-hero .hero-sparkles .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.cooperation-hero .hero-sparkles .sparkle-1 {
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.cooperation-hero .hero-sparkles .sparkle-2 {
  top: 25%;
  right: 12%;
  animation-delay: 0.3s;
}

.cooperation-hero .hero-sparkles .sparkle-3 {
  bottom: 30%;
  left: 15%;
  animation-delay: 0.6s;
}

.cooperation-hero .hero-sparkles .sparkle-4 {
  bottom: 40%;
  right: 20%;
  animation-delay: 0.9s;
}

.cooperation-hero .hero-sparkles .sparkle-5 {
  top: 45%;
  left: 45%;
  animation-delay: 1.2s;
}

.cooperation-hero .hero-sparkles .sparkle-6 {
  top: 60%;
  right: 30%;
  animation-delay: 1.5s;
}

.cooperation-hero .hero-sparkles .sparkle-7 {
  bottom: 20%;
  left: 60%;
  animation-delay: 1.8s;
}

.cooperation-hero .hero-sparkles .sparkle-8 {
  top: 35%;
  right: 60%;
  animation-delay: 2.1s;
}




.cooperation-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) 1.5rem clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.75rem);
}

.cooperation-hero .hero-logo {
  position: absolute;
  top: clamp(-3rem, -8vw, -2rem);
  left: 50%;
  transform: translate(-50%, 0);
  width: clamp(180px, 28vw, 260px);
  height: clamp(180px, 28vw, 260px);
  margin: 0;
  opacity: 0.18;
  pointer-events: none;
  filter: none;
  border: none;
  box-shadow: none;
}

.cooperation-hero .logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  border: none;
  box-shadow: none;
  transition: none;
}

.cooperation-hero .logo-glow {
  display: none;
}

.cooperation-hero .hero-text,
.cooperation-hero .hero-features,
.cooperation-hero .hero-cta {
  position: relative;
  z-index: 2;
  width: 100%;
}



.cooperation-hero .hero-text {
  margin-bottom: 0;
}

.cooperation-hero .hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cooperation-hero .title-line {
  display: block;
  animation: titleSlideIn 1s ease-out;
}

.cooperation-hero .title-line:first-child {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.cooperation-hero .title-line:last-child {
  animation-delay: 0.4s;
  animation-fill-mode: both;
}



.cooperation-hero .gradient-text {
  background: linear-gradient(135deg, #8b5cf6, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cooperation-hero .hero-subtitle {
  font-size: 1.4rem;
  color: #d1d5db;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: subtitleFadeIn 1s ease-out 0.6s both;
}

.cooperation-hero .hero-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.25rem, 3vw, 2.5rem);
}



.cooperation-hero .hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: min(100%, 1024px);
  margin: 0 auto;
}

.cooperation-hero .hero-features .feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: none;
  opacity: 1;
  transform: none;
}

.feature-card:nth-child(1) {
  animation-delay: 0.8s;
  animation-fill-mode: both;
}

.feature-card:nth-child(2) {
  animation-delay: 1s;
  animation-fill-mode: both;
}

.feature-card:nth-child(3) {
  animation-delay: 1.2s;
  animation-fill-mode: both;
}



.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.feature-content {
  text-align: center;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.4;
}

.hero-cta {
  animation: ctaFadeIn 1s ease-out 1.4s both;
}

@media (max-width: 1200px) {
  .cooperation-hero .hero-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .cooperation-hero .hero-features {
    grid-template-columns: 1fr;
  }
}

@keyframes ctaFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateY(2px);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

.partnership-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.partnership-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.card-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.card-sparkles .sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: sparkleFloat 4s ease-in-out infinite;
}

.card-sparkles .sparkle:nth-child(1) {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.card-sparkles .sparkle:nth-child(2) {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.card-sparkles .sparkle:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.partnership-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #8b5cf6;
}

.partnership-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.partnership-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.partnership-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.partnership-benefits li {
  color: #d1d5db;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.partnership-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b5cf6;
  font-weight: bold;
}

.partnership-commission {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.commission-label {
  color: #9ca3af;
  font-size: 0.9rem;
}

.commission-value {
  color: #8b5cf6;
  font-weight: 700;
  font-size: 1.1rem;
}

.partnership-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.partnership-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  color: #ffffff;
  text-decoration: none;
}

.designers-section,
.models-section,
.bloggers-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.designers-sparkles,
.models-sparkles,
.bloggers-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.designers-sparkles .sparkle,
.models-sparkles .sparkle,
.bloggers-sparkles .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.designers-sparkles .sparkle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.designers-sparkles .sparkle:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 0.5s;
}

.designers-sparkles .sparkle:nth-child(3) {
  bottom: 25%;
  left: 20%;
  animation-delay: 1s;
}

.designers-sparkles .sparkle:nth-child(4) {
  bottom: 35%;
  right: 25%;
  animation-delay: 1.5s;
}

.models-sparkles .sparkle:nth-child(1) {
  top: 15%;
  left: 15%;
  animation-delay: 0s;
}

.models-sparkles .sparkle:nth-child(2) {
  top: 25%;
  right: 20%;
  animation-delay: 1s;
}

.models-sparkles .sparkle:nth-child(3) {
  bottom: 30%;
  left: 25%;
  animation-delay: 2s;
}

.bloggers-sparkles .sparkle:nth-child(1) {
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}

.bloggers-sparkles .sparkle:nth-child(2) {
  top: 28%;
  right: 18%;
  animation-delay: 0.7s;
}

.bloggers-sparkles .sparkle:nth-child(3) {
  bottom: 28%;
  left: 22%;
  animation-delay: 1.4s;
}

.bloggers-sparkles .sparkle:nth-child(4) {
  bottom: 38%;
  right: 28%;
  animation-delay: 2.1s;
}

.designers-icon,
.models-icon,
.bloggers-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #8b5cf6;
}

.designers-title,
.models-title,
.bloggers-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.designers-description,
.models-description,
.bloggers-description {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.designers-benefits,
.models-benefits,
.bloggers-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  font-weight: 500;
}

.benefit-item svg {
  color: #8b5cf6;
  flex-shrink: 0;
}

.designers-btn,
.models-btn,
.bloggers-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.designers-btn:hover,
.models-btn:hover,
.bloggers-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.contact-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(99, 102, 241, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-description {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 2.5rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn.primary {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  color: #ffffff;
}

.contact-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn:hover {
  transform: translateY(-3px);
  color: #ffffff;
  text-decoration: none;
}

.contact-btn.primary:hover {
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.contact-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .cooperation-hero {
    padding: clamp(3rem, 8vw, 4rem) 1.5rem;
    min-height: 60vh;
  }

  .cooperation-hero .hero-title {
    font-size: 2.6rem;
  }

  .cooperation-hero .hero-features {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    gap: 1.25rem;
  }

  .cooperation-hero .hero-features .feature-card {
    padding: 1.5rem;
  }

  .cooperation-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .cooperation-hero .hero-logo {
    top: clamp(-2rem, -12vw, -1.25rem);
    width: clamp(150px, 42vw, 210px);
    height: clamp(150px, 42vw, 210px);
  }

  .cooperation-hero .hero-content {
    padding: clamp(3rem, 10vw, 4.5rem) 1rem clamp(2.5rem, 8vw, 3.5rem);
  }

  .about-hero {
    padding: clamp(3rem, 8vw, 4.5rem) 1.5rem;
  }

  .about-hero .hero-content {
    padding: clamp(3rem, 10vw, 4.5rem) 1rem clamp(2.5rem, 8vw, 3.5rem);
  }

  .about-hero .hero-logo {
    top: clamp(-2rem, -12vw, -1rem);
    width: clamp(150px, 44vw, 210px);
    height: clamp(150px, 44vw, 210px);
  }

  .about-hero .hero-title {
    font-size: 2.5rem;
  }

  .about-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-hero .hero-features {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    gap: 1.25rem;
  }

  .about-hero .feature-card {
    padding: 1.5rem;
  }

  .contacts-hero {
    padding: clamp(3rem, 9vw, 4.5rem) 1.5rem;
  }

  .contacts-hero .hero-content {
    padding: clamp(2.5rem, 8vw, 3.5rem) 1rem;
  }

  .contacts-hero::before {
    top: clamp(-1.5rem, -10vw, -0.5rem);
    width: clamp(140px, 46vw, 200px);
    height: clamp(140px, 46vw, 200px);
  }

  .contacts-hero .hero-title {
    font-size: 2.4rem;
  }

  .contacts-hero .hero-subtitle {
    font-size: 1.05rem;
  }

  .contacts-hero .hero-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .designers-title,
  .models-title,
  .bloggers-title,
  .contact-title {
    font-size: 2rem;
  }

  .designers-benefits,
  .models-benefits,
  .bloggers-benefits {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
