/* ================================================
   SOLUTION PAGE STYLES
   ================================================ */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=M+PLUS+1p:wght@500;700;800&display=swap');

/* ================================================
   Hero Section
   ================================================ */

.hero-section {
  position: relative;
  background-color: #ffffff;
  padding: 5rem 1rem;
}

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

.hero-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #000000;
}

.hero-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #718096;
}

/* ================================================
   Introduction Section
   ================================================ */

.intro-section {
  padding: 5rem 1rem;
  background-color: #f7fafc;
}

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

.intro-content {
  max-width: 48rem;
}

.intro-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--wedo-vibrant-blue);
}

.intro-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1rem;
}

/* ================================================
   Solutions Section
   ================================================ */

.solutions-section {
  padding: 5rem 1rem;
  background-color: #ffffff;
}

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

.solution-item {
  margin-bottom: 5rem;
}

.solution-item:last-child {
  margin-bottom: 0;
}

.solution-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  border-bottom: 4px solid var(--wedo-vibrant-blue);
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.solution-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.solution-features li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.solution-features li::before {
  content: "•";
  color: var(--wedo-vibrant-blue);
  font-size: 20px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.solution-emphasis {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #718096;
  font-style: italic;
  margin-bottom: 1rem;
}

.solution-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

/* ================================================
   Tools Section
   ================================================ */

.tools-section {
  padding: 5rem 1rem;
  background-color: #f7fafc;
}

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

.tools-section-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--wedo-vibrant-blue);
  margin-bottom: 3rem;
}

.tool-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.tool-item:last-child {
  margin-bottom: 0;
}

.tool-text {
  /* Text column */
}

.tool-title {
  font-family: 'M PLUS 1p', 'Noto Sans JP', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 1.5rem;
}

.tool-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a5568;
}

.tool-video {
  /* Video column */
}

.video-placeholder {
  /* background-color: #1a202c; */
  border-radius: 0.5rem;
  overflow: hidden;
  /* aspect-ratio: 16 / 9; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #718096;
  gap: 0.75rem;
  min-height: 240px;
}

.video-placeholder svg {
  opacity: 0.4;
}

.video-placeholder span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  opacity: 0.6;
}

.video-placeholder video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}
.solution-download-btn{
display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background-color: var(--wedo-vibrant-blue);
    color: #ffffff;
    border-radius: 9999px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
/* ================================================
   Tablet Responsive (max-width: 1024px)
   ================================================ */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }

  .intro-title {
    font-size: 36px;
  }

  .solution-title {
    font-size: 32px;
  }

  .tools-section-title {
    font-size: 36px;
  }

  .tool-title {
    font-size: 28px;
  }
}

/* ================================================
   Desktop Responsive (min-width: 768px)
   ================================================ */

@media (min-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .intro-title {
    font-size: 42px;
  }

  .solution-title {
    font-size: 36px;
  }

  .tools-section-title {
    font-size: 42px;
  }

  .tool-title {
    font-size: 32px;
  }

  .tool-item {
    grid-template-columns: 1fr 1fr;
  }

  .video-placeholder {
    background-color: #1a202c;
    aspect-ratio: 16 / 9;
  }
}

/* ================================================
   Mobile Responsive (max-width: 767px)
   ================================================ */

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .intro-section {
    padding: 3rem 1rem;
  }

  .intro-title {
    font-size: 28px;
  }

  .intro-text {
    font-size: 15px;
  }

  .intro-text br {
    display: none;
  }

  .solutions-section {
    padding: 3rem 1rem;
  }

  .solution-item {
    margin-bottom: 3rem;
  }

  .solution-title {
    font-size: 24px;
  }

  .solution-description,
  .solution-features li,
  .solution-note {
    font-size: 15px;
  }

  .solution-note br {
    display: none;
  }

  .tools-section {
    padding: 3rem 1rem;
  }

  .tools-section-title {
    font-size: 28px;
    margin-bottom: 2rem;
  }

  .tool-item {
    margin-bottom: 3rem;
    gap: 2rem;
  }

  .tool-title {
    font-size: 24px;
  }

  .tool-description {
    font-size: 15px;
  }
}
