/* リセットとベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.btn-header {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-recruit {
  background: #007bff;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.btn-recruit:hover {
  background: #0056b3;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.btn-contact {
  background: #28a745;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
}

.btn-contact:hover {
  background: #1e7e34;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.btn-icon {
  font-size: 12px;
  font-weight: bold;
}

/* ヒーローセクション */
.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ヒーローセクションのレイアウト調整 */
.hero-text {
  order: 2;
}

.hero-form {
  order: 1;
  max-width: 450px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.highlight {
  color: #fbbf24;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

.hero-form {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #333;
}

.hero-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1e3a8a;
  text-align: center;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.btn-primary {
  background: #fff;
  color: #1e3a8a;
  padding: 18px 35px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* フォールバックフォーム用スタイル */
.hero-fallback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-fallback-form .form-field {
  display: flex;
  flex-direction: column;
}

.hero-fallback-form input {
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.hero-fallback-form input:focus {
  outline: none;
  border-color: #3b82f6;
}

.form-notice {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  color: #92400e;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
}

/* 企業ロゴセクション */
.company-logos {
  padding: 60px 0;
  background: #f8fafc;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.company-logo-img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.company-logo-img:hover {
  filter: grayscale(0%);
}

/* 課題セクション */
.challenges {
  padding: 80px 0;
  background: #fff;
}

.challenges h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

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

.challenge-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.challenge-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.challenge-header {
  margin-bottom: 16px;
}

.challenge-badge {
  display: inline-block;
  padding: 10px 16px;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.challenge-illustration {
  margin: 10px auto 14px;
}

.challenge-illust-img {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.challenge-desc p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: left;
}

/* WADO説明セクション */
.wado-explanation {
  position: relative;
  padding: 80px 0;
  color: #fff;
  overflow: hidden;
}

.explanation-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explanation-bg-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
}

.wado-explanation .container {
  position: relative;
  z-index: 2;
}

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

.explanation-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.explanation-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* サービス特長セクション */
.service-features {
  padding: 80px 0;
  background: #fff;
}

.service-features h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

.features-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 0;
}

.features-images {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 0;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 400px;
  /* 最小高さを設定 */
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  min-height: 120px;
  align-items: flex-start;
}

.feature-check {
  background: #10b981;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0;
  align-self: flex-start;
}

.feature-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e293b;
}

.feature-text p {
  color: #64748b;
  line-height: 1.7;
}

.features-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-image {
  background: #f1f5f9;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0;
}

.feature-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.3s ease;
  max-height: 120px;
  object-fit: contain;
}

.feature-img:hover {
  transform: scale(1.05);
}

/* 資料ダウンロードセクション */
.download-section {
  padding: 80px 0;
  background: #f8fafc;
  color: #fff;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.download-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.download-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.download-image {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.download-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.download-img:hover {
  transform: scale(1.05);
}

/* 導入事例集ダウンロードセクション */
.case-studies-section {
  padding: 80px 0;
  background: #fff;
}

.case-studies-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  padding: 60px;
  border: 2px solid #1e3a8a;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
  position: relative;
}

.case-studies-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.case-studies-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #374151;
}

.case-studies-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-studies-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.case-study-doc {
  position: absolute;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  transition: transform 0.3s ease;
}

.case-study-doc-1 {
  top: 0;
  left: 20px;
  width: 280px;
  height: 200px;
  transform: rotate(-5deg);
  z-index: 1;
}

.case-study-doc-2 {
  top: 40px;
  left: 40px;
  width: 300px;
  height: 220px;
  transform: rotate(-2deg);
  z-index: 2;
}

.case-study-doc-3 {
  top: 80px;
  left: 60px;
  width: 320px;
  height: 240px;
  transform: rotate(0deg);
  z-index: 3;
}

.doc-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
}

.doc-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-study-doc-3 .doc-content {
  display: flex;
  flex-direction: row;
  gap: 15px;
  height: 100%;
}

.doc-text {
  font-size: 0.8rem;
  color: #374151;
  line-height: 1.4;
}

.doc-image {
  text-align: center;
}

.doc-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.case-study-doc-3 .doc-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.doc-left {
  flex: 1;
}

.doc-right {
  flex: 1;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doc-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.doc-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
}

.case-study-doc:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 10;
}



/* 導入事例セクション */
.case-studies {
  padding: 80px 0;
  background: #fff;
}

.case-studies h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.case-study-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

.case-study-image {
  margin-bottom: 20px;
  text-align: center;
  overflow: hidden;
}

.case-study-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.case-study-img:hover {
  transform: scale(1.05);
}

.case-study-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b;
  text-align: left;
}

.case-study-card p {
  color: #64748b;
  line-height: 1.7;
  text-align: left;
  margin-top: 15px;
}

.company-logos-bottom {
  border-top: 2px solid #e2e8f0;
  padding-top: 40px;
  margin-top: 40px;
}

.company-logos-bottom .logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.company-logos-bottom .logo-item {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* 利用の流れセクション */
.flow-section {
  padding: 80px 0;
  background: #fff;
}

.flow-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1e3a8a;
}

.flow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.flow-step {
  background: #f8fafc;
  padding: 25px 30px;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  max-width: 550px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.step-bar {
  width: 4px;
  height: 50px;
  background: #1e3a8a;
  border-radius: 2px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}

.step-content p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
}

.flow-arrow {
  font-size: 1.2rem;
  color: #3b82f6;
  font-weight: bold;
  margin: 5px 0;
}

/* FAQセクション */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #1e293b;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-question {
  background: #f8fafc;
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-q {
  color: #1e3a8a;
  font-weight: bold;
  font-size: 1.1rem;
}

.faq-text {
  flex: 1;
  font-weight: 500;
}

.faq-toggle {
  color: #64748b;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  display: none;
}

.faq-item.active .faq-answer {
  display: flex;
  gap: 15px;
}

.faq-a {
  color: #10b981;
  font-weight: bold;
  font-size: 1.1rem;
}

/* 最終お問い合わせセクション */
.final-contact {
  padding: 80px 0;
  background: #e0f2fe;
}

.final-contact h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1e3a8a;
}

.final-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.left-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.description-text {
  margin-bottom: 20px;
}

.main-desc {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
  line-height: 1.6;
}

.sub-desc {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}

.documents-visual {
  text-align: center;
  margin: 20px 0;
}

.documents-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.recommendation {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.recommendation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.recommendation-text {
  flex: 1;
}

.recommendation-image {
  text-align: center;
}

.recommendation-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recommendation h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e293b;
}

.recommendation ul {
  list-style: none;
  padding: 0;
}

.recommendation li {
  padding: 8px 0;
  color: #64748b;
  position: relative;
  padding-left: 20px;
}

.recommendation li:before {
  content: "•";
  color: #1e3a8a;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.right-content {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.privacy-policy {
  margin: 20px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #3b82f6;
}

.checkbox-text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.5;
}

.privacy-link {
  color: #3b82f6;
  text-decoration: none;
  margin-left: 5px;
}

.privacy-link:hover {
  text-decoration: underline;
}

.final-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.final-form input,
.final-form select,
.final-form textarea {
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.final-form input:focus,
.final-form select:focus,
.final-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

.direct-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  background: #1e3a8a;
  color: #fff;
  padding: 24px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

.direct-contact .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-contact {
  background: #ffffff;
  color: #1e3a8a;
  padding: 18px 40px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn-contact:hover {
  background: rgba(255, 255, 255, 0.9);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #ffffff;
  align-items: flex-start;
}

.contact-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-text {
  font-size: 0.9rem;
  color: #64748b;
}

.phone-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.phone-label {
  font-size: 0.95rem;
  color: #ffffff;
}

/* フッター */
.footer {
  background: #e0f2fe;
  color: #1e293b;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #bae6fd;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .download-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .final-contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .recommendation-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .direct-contact {
    flex-direction: column;
    gap: 20px;
  }

  .phone-info {
    flex-direction: column;
    gap: 10px;
  }

  .flow-container {
    max-width: 100%;
  }

  .flow-step {
    min-width: auto;
    width: 100%;
    max-width: 320px;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 40px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-form {
    padding: 30px 20px;
  }

  .challenges h2,
  .wado-explanation h2,
  .service-features h2,
  .case-studies h2,
  .flow-section h2,
  .faq-section h2,
  .final-contact h2 {
    font-size: 1.8rem;
  }
}