/* Event Vision AI Homepage Styles */

/* Base Variables */
:root {
  --background: 0 0% 98%;
  --foreground: 0 0% 15%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 15%;
  --primary: 0 0% 25%;
  --primary-foreground: 0 0% 98%;
  --primary-glow: 0 0% 40%;
  --secondary: 0 0% 95%;
  --secondary-foreground: 0 0% 15%;
  --muted: 0 0% 92%;
  --muted-foreground: 0 0% 45%;
  --accent: 0 0% 30%;
  --accent-foreground: 0 0% 98%;
  --border: 0 0% 88%;
  --radius: 0.5rem;
}

/* Hero Section */
.content.full-height {
  height: 100vh;
  min-height: 100vh;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-text-wrapper {
  background: rgba(0, 10, 14, 0.67);
  border-radius: 24px;
  padding: 40px 20px;
  margin: 10px;
  width: 100%;
  max-width: 100%;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  color: #f9fafb;
  margin-bottom: 1rem;
}

.hero-title-gradient {
  background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary-glow)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #f9fafb;
}

.hero-description {
  max-width: 42rem;
  line-height: 1.75;
  color: #f9fafb;
  font-size: 1rem;
  margin: 0 45px 20px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: white;
  color: #000;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 500;
  margin: 20px 45px;
  transition: all 0.3s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-controls:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-controls.prev {
  left: 1rem;
}

.hero-controls.next {
  right: 1rem;
}

.hero-indicators {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.hero-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-indicator.active {
  width: 32px;
  height: 8px;
  border-radius: 4px;
  background: white;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.scroll-indicator-inner {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
  animation: bounce 2s infinite;
}

.scroll-indicator-dot {
  width: 4px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  animation: glow 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes glow {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Features Section */
.features-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: hsl(var(--background));
}

.features-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 64px;
}

.features-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  margin-bottom: 24px;
}

.features-subtitle {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.features-product {
  max-width: 64rem;
  margin: 0 auto 64px;
  text-align: center;
}

.features-product img {
  width: 80%;
  height: auto;
  margin-bottom: 32px;
}

.features-product-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 24px;
}

.features-product-desc {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  font-size: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 64rem;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  height: 324px;
  overflow: hidden;
  border-radius: 24px;
}

.feature-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

.feature-card-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: white;
  margin-bottom: 16px;
}

.feature-value {
  font-size: 3.75rem;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

.feature-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Technology Section */
.tech-section {
  padding: 96px 0;
  background: hsl(var(--background));
}

.tech-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.tech-grid > div:first-child {
  text-align: left;
}

.tech-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid hsl(var(--primary) / 0.2);
  margin-bottom: 24px;
}

.tech-title {
  font-size: 3rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  white-space: nowrap;
  margin-bottom: 24px;
}

.tech-description {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.tech-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
}

.tech-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  border: 2px solid hsl(var(--foreground));
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.tech-button:hover {
  background: transparent;
  color: hsl(var(--foreground));
}

.tech-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tech-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: hsl(var(--muted) / 0.3);
}

.partners-header {
  text-align: center;
  margin-bottom: 48px;
}

.partners-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.partners-subtitle {
  color: hsl(var(--muted-foreground));
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.partner-card {
  width: 100%;
  max-width: 200px;
  height: 96px;
  border-radius: 8px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: box-shadow 0.3s;
}

.partner-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Case Studies Section */
.cases-section {
  padding: 96px 0;
  background: hsl(var(--background));
}

.cases-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 64px;
}

.cases-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  margin-bottom: 24px;
}

.cases-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.case-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.case-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.case-image {
  position: relative;
  height: 224px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.case-card:hover .case-image img {
  transform: scale(1.1);
}

.case-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: hsl(var(--card) / 0.9);
  backdrop-filter: blur(8px);
  color: hsl(var(--foreground));
  font-size: 0.75rem;
  font-weight: 500;
}

.case-content {
  padding: 24px;
}

.case-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 16px;
  transition: color 0.3s;
}

.case-card:hover .case-title {
  color: hsl(var(--primary));
}

.case-desc {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 16px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  color: hsl(var(--primary));
  text-decoration: none;
  font-size: 0.875rem;
  transition: transform 0.3s;
}

.case-link:hover {
  transform: translateX(4px);
}

/* News Section */
.news-section {
  padding: 96px 0;
  background: hsl(var(--muted) / 0.3);
}

.news-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 64px;
}

.news-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  margin-bottom: 24px;
}

.news-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.news-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.news-card:hover {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.9);
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 500;
}

.news-content {
  padding: 24px;
  text-align: left;
}

.news-date {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 12px;
  justify-content: flex-start;
}

.news-date-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.news-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
  transition: color 0.3s;
  text-align: left;
}

.news-card:hover .news-card-title {
  color: hsl(var(--primary));
}

.news-excerpt {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 12px;
  text-align: left;
}

.news-link {
  display: inline-flex;
  align-items: center;
  color: hsl(var(--primary));
  text-decoration: none;
  font-size: 0.875rem;
  transition: transform 0.3s;
  text-align: left;
}

.news-link:hover {
  transform: translateX(4px);
}

.news-view-all {
  text-align: center;
}

.news-view-all-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  border: 2px solid hsl(var(--foreground));
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.news-view-all-button:hover {
  background: transparent;
  color: hsl(var(--foreground));
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Responsive */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
  
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text-wrapper {
    padding: 30px 15px;
    margin: 5px;
  }
  
  .hero-description {
    margin: 0 20px 15px;
    font-size: 0.9rem;
  }
  
  .hero-cta {
    margin: 15px 20px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .hero-controls {
    width: 40px;
    height: 40px;
  }
  
  .hero-controls.prev {
    left: 0.5rem;
  }
  
  .hero-controls.next {
    right: 0.5rem;
  }
  
  .hero-indicators {
    bottom: 60px;
  }
  
  .hero-scroll-indicator {
    bottom: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cases-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-buttons {
    flex-direction: column;
  }
}

/* Footer Styles */
.event-vision-footer {
  background: hsl(var(--background));
  padding: 64px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.event-vision-footer .footer-title {
  position: static !important;
  width: auto !important;
  top: auto !important;
  padding-top: 0 !important;
  cursor: default !important;
  transform: none !important;
  transform-origin: unset !important;
  z-index: auto !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: hsl(var(--foreground)) !important;
  margin-bottom: 16px !important;
}

.event-vision-footer .footer-title:before {
  display: none !important;
}

.event-vision-footer .footer-title h2 {
  font-size: 1.125rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: hsl(var(--foreground)) !important;
  font-family: inherit !important;
  font-weight: 600 !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: hsl(var(--foreground));
}

.footer-contact {
  margin: 0;
  padding: 0;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: hsl(var(--muted-foreground));
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  color: hsl(var(--foreground));
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: hsl(var(--primary));
  transition: color 0.3s;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: hsl(var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social-link:hover {
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
}

.footer-social-link i {
  font-size: 16px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid hsl(var(--border));
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-bottom-link {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-link:hover {
  color: hsl(var(--foreground));
}

/* Footer Responsive */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}

/* Global Cooperation Section */
.global-cooperation-section {
  padding: 96px 0;
  background: hsl(var(--background));
  width: 100%;
  max-width: 100%;
}

.cooperation-headers-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
  padding: 0 1rem;
  max-width: 100%;
}

.cooperation-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cooperation-header-spacer {
  display: none;
}

.cooperation-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.cooperation-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
  line-height: 1.4;
}

.cooperation-content-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 0 1rem;
  max-width: 100%;
}

.cooperation-column {
  display: flex;
  flex-direction: column;
}

.cooperation-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.cooperation-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

.cooperation-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  position: relative;
}

.timeline-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--primary));
}

.timeline-item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 3px;
  top: 16px;
  width: 2px;
  height: calc(100% + 4px);
  background: hsl(var(--border));
}

.timeline-period {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

.timeline-content {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
}

.cooperation-products {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
}

.product-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
}

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

.product-image {
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  border: 1px solid hsl(var(--border));
  object-fit: contain;
  background: hsl(var(--muted));
  padding: 8px;
}

/* Global Cooperation Responsive */
@media (min-width: 768px) {
  .cooperation-headers-row {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 2rem;
    gap: 24px;
  }
  
  .cooperation-header {
    align-items: center;
  }
  
  .cooperation-header-spacer {
    display: block;
    width: 200px;
  }
  
  .cooperation-logo {
    height: 50px;
    margin-bottom: 8px;
  }
  
  .cooperation-title {
    font-size: 1.125rem;
  }
  
  .cooperation-content-row {
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    padding: 0 2rem;
  }
  
  .cooperation-products {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 32px;
    min-width: 300px;
  }
  
  .product-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .cooperation-logo {
    height: 80px;
  }
  
  .cooperation-title {
    font-size: 1.75rem;
  }
  
  .product-images {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .product-image {
    max-width: 150px;
  }
}

@media (min-width: 1024px) {
  .cooperation-headers-row {
    gap: 48px;
    padding: 0 4rem;
  }
  
  .cooperation-header-spacer {
    width: 300px;
  }
  
  .cooperation-content-row {
    gap: 48px;
    padding: 0 4rem;
  }
  
  .cooperation-products {
    min-width: 400px;
    padding: 0 48px;
  }
  
  .cooperation-headers-row {
    gap: 32px;
  }
  
  .cooperation-logo {
    height: 60px;
  }
  
  .cooperation-title {
    font-size: 1.25rem;
  }
  
  .product-image {
    max-width: 200px;
  }
}

