/* ai-video-section.css - Production-ready, isolated styles */
@import url('https://fonts.googleapis.com/css2?family=SF+Pro+Display:wght@300;400;500;600;700&display=swap');

.av-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: white;
  overflow: hidden;
  padding: 50px;
  margin: 25px;
  border-radius: 23px;
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.av-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.av-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 70vh;
}

.av-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 28rem;
}

.av-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.av-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #475569;
  font-weight: 400;
  margin: 0;
}

.av-cta {
  align-self: flex-start;
  padding: 1rem 2.5rem;
  background: rgb(0, 110, 255);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  /* box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4); */
  text-decoration: none;
  display: inline-block;
}

.av-cta:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.5); */
}

.av-cta:active {
  transform: translateY(0);
}

.av-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.av-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px -12px rgba(0, 0, 0, 0.15);
}

.av-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.av-image-wrapper:hover .av-image {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1024px) {
  .av-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .av-content {
    max-width: none;
    order: 1;
  }
  
  .av-cta {
    align-self: center;
    margin-top: 1rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .av-section {
    padding: 1rem 0.5rem;
    min-height: 100vh;
  }
  
  .av-grid {
    gap: 2rem;
  }
  
  .av-image-wrapper {
    min-height: 300px;
    border-radius: 1.5rem;
  }
  
  .av-title {
    font-size: 2rem;
  }
  
  .av-description {
    font-size: 1rem;
  }
}













/* CTA GROUP */
.av-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* PRIMARY CTA */
.av-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #006eff;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.av-cta:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

/* SECONDARY CTA (Outline) */
.av-cta-outline {
    background: transparent;
    color: #006eff;
    border: 2px solid #006eff;
}

.av-cta-outline:hover {
    background: #006eff;
    color: #ffffff;
}
