@charset "UTF-8";
/*
    Description: THEMIL
    Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background: url(./top-img/about-kv.png);
  background-size: cover;
}

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

/* Header Styles */
.site-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-image {
  width: 139px;
  height: 35px;
  display: block;
}

.logo-image2 {
  width: 360px;
  height: 75px;
}

.logo-highlight {
  color: #00bd94;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-navigation a {
  text-decoration: none;
  color: #333333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: #00bd94;
}

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

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: #333333;
  transition: all 0.3s ease;
}

.hamburger-line2 {
  width: 25px;
  height: 2px;
  background: #00bd94;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-nav {
  padding: 0;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-decoration: none;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.mobile-nav-menu a:hover {
  background: #f8f8f8;
}

.mobile-menu-buttons {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-mobile-full {
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
}

.btn-mobile-full svg {
  width: 20px;
  height: 20px;
}

/* 浮遊する画像に共通のスタイル */
.floating-image {
  position: absolute;
  animation: fuwafuwa 3.5s infinite ease-in-out;
}

/* 浮遊アニメーションの定義 */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* 各画像の位置とアニメーション遅延を設定 */
#kv-a {
  width: 260px;
  top: 20%;
  left: 45%;
  animation-delay: 0s;
  animation-duration: 4s;
}

#kv-b {
  width: 260px;
  top: 36%;
  right: -5%;
  animation-delay: 1s;
}

#kv-c {
  width: 260px;
  bottom: 30%;
  left: 50%;
  animation-delay: 1.5s;
  animation-duration: 4.5s;
}

#kv-d {
  width: 260px;
  bottom: 15%;
  right: -10%;
  animation-delay: 0.5s;
}

/* ボタンの共通スタイル */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease-out;
  border: none;
  cursor: pointer;
  line-height: 1.2;
}

/* ボタンの個別スタイル（アニメーション用） */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #555555;
  border: 1px solid #ccc;
  transition: color 0.4s ease-in-out;
}

.btn-primary > * {
  position: relative;
  z-index: 2;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: inherit;
  align-items: center;
  gap: inherit;
  transform: translateZ(0);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 700px;
  height: 500px;
  background-color: #555555;
  border-radius: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease-in-out;
}

.btn-primary:hover {
  color: #ffffff;
}

.btn-primary:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.btn-secondary {
  background: #555555;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #444444;
  color: #00bd94;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #333333;
  border: 2px solid #d9d9d9;
}

.btn-outline:hover {
  background: #f6f6f6;
  border-color: #00bd94;
  color: #00bd94;
}

.btn-large {
  width: 500px;
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 5px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #fcfcfc 100%);
  background-image: url("./top-img/kv-back.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-blend-mode: overlay;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

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

.hero-text {
  position: relative;
  z-index: 2;
  width: 630px;
}

.hero-title {
  font-size: 53px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 0.2rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-signup {
  display: none;
}

.hero-note {
  font-size: 11px;
  color: #888888;
  line-height: 1.6;
  margin: 0;
  display: none;
}

/* Hero Image */
.hero-image {
  position: relative;
  height: 600px;
  width: 530px;
  display: flex;
  background: url(./top-img/kv.png) no-repeat;
  background-size: 120%;
}

/* Floating Cards */
.hero-floating-card {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
  max-width: 200px;
}

.hero-floating-card .card-label {
  font-size: 12px;
  color: #666666;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.hero-floating-card .card-title {
  font-size: 16px;
  color: #00bd94;
  margin: 0;
  font-weight: bold;
  line-height: 1.3;
}

.hero-floating-card .card-text {
  font-size: 13px;
  color: #333333;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.hero-floating-card .card-highlight {
  font-size: 15px;
  color: #00bd94;
  margin: 0;
  font-weight: bold;
  line-height: 1.3;
}

.card-1 {
  top: 20px;
  left: 10px;
}

.card-2 {
  top: 80px;
  right: 10px;
}

.card-3 {
  bottom: 120px;
  left: 5px;
}

.card-4 {
  bottom: 60px;
  right: 15px;
}

/* Mobile Hero Visual Section */
.hero-mobile-visual {
  position: relative;
  width: 100%;
  min-height: 500px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mobile-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  background: #00bd94;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-mobile-phone {
  position: relative;
  z-index: 2;
  width: 200px;
  height: auto;
}

.hero-mobile-phone img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Mobile Hero Content */
.hero-mobile-content {
  text-align: center;
  padding: 0 20px;
}

.hero-mobile-title {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 20px;
}

.hero-mobile-subtitle {
  font-size: 16px;
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-mobile-download {
  width: 100%;
  padding: 16px 24px;
  background: #ffffff;
  color: #333333;
  border: 2px solid #d9d9d9;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-mobile-download:hover {
  background: #f6f6f6;
  border-color: #00bd94;
  color: #00bd94;
}

.btn-mobile-signup {
  width: 100%;
  padding: 18px 24px;
  background: #5d83ff;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-mobile-signup:hover {
  background: #4a6eef;
  transform: translateY(-2px);
}

.hero-mobile-note {
  font-size: 11px;
  color: #888888;
  line-height: 1.6;
  margin: 0;
}

.hero-mockup-image {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* App Interface */
.app-interface {
  height: 100%;
  background: linear-gradient(135deg, #00bd94 0%, #00a085 100%);
  position: relative;
  overflow: hidden;
}

.app-content {
  padding: 30px 20px;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Chat Bubble Styles */
.chat-bubble {
  background: #ffffff;
  border-radius: 20px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.chat-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 8px solid #ffffff;
}

.bubble-1 {
  margin-top: 20px;
}

.bubble-2 {
  margin-left: 30px;
}

.bubble-3 {
  margin-top: 40px;
  margin-left: 20px;
}

.chat-bubble p {
  font-size: 14px;
  color: #666666;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.chat-bubble h3 {
  font-size: 18px;
  color: #00bd94;
  margin: 0;
  font-weight: bold;
  line-height: 1.3;
}

/* App Logo Section */
.app-logo-section {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.app-logo-section p {
  font-size: 12px;
  color: #666666;
  margin-bottom: 15px;
  line-height: 1.4;
}

.themil-logo {
  font-size: 32px;
  font-weight: bold;
  color: #333333;
  margin: 15px 0;
  letter-spacing: 1px;
}

.logo-m {
  color: #00bd94;
}

.feature-text {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.feature-text p {
  font-size: 14px;
  color: #666666;
  margin: 0 0 5px 0;
}

.feature-text h3 {
  font-size: 18px;
  color: #00bd94;
  margin: 0;
}

/* Login Section Styles */
.login-section {
  margin-top: 20px;
}

.login-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.login-btn.primary {
  background: #00bd94;
  color: #ffffff;
}

.login-btn.primary:hover {
  background: #00a085;
  transform: translateY(-1px);
}

.login-btn.secondary {
  background: transparent;
  color: #00bd94;
  border: 2px solid #00bd94;
}

.login-btn.secondary:hover {
  background: #00bd94;
  color: #ffffff;
  transform: translateY(-1px);
}

.login-btn .icon {
  font-size: 16px;
}

/* Background Shapes */
.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bd94, #00a085);
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: 200px;
}

.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: -50px;
  background: linear-gradient(135deg, rgba(0, 189, 148, 0.1), rgba(0, 160, 133, 0.1));
}

/* Footer Note */
.footer-note {
  background: #f8f8f8;
  padding: 20px 0;
  text-align: center;
}

.footer-note p {
  font-size: 12px;
  color: #888888;
}

/* Site Footer */
.site-footer {
  background: #ffffff;
  padding: 60px 0 0;
  text-align: center;
}

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

.footer-logo {
  margin-bottom: 10px;
}

.footer-logo img {
  width: 139px;
  height: 35px;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.footer-link {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #00bd94;
}

.footer-copyright {
  margin-top: 10px;
  width: 100vw;
  background: #e8e8e8;
}

.footer-copyright p {
  font-size: 12px;
  color: #888888;
  margin: 0 auto;
  padding: 10px 0 10px 0;
}

/* About Section */
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-content {
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.about-main-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.about-title {
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.themil-brand {
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 1px;
}

.themil-brand-logo {
  width: 230px;
  height: 50px;
  display: inline-block;
}

.about-description {
  font-size: 32px;
  color: #333333;
  margin-bottom: 40px;
  line-height: 1.5;
  font-weight: 600;
}

.text-underline {
  background: linear-gradient(transparent 90%, #00bd94 60%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 10px 4px;
}

.about-stats {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-stats p {
  font-size: 16px;
  color: #555555;
  line-height: 1.8;
  margin: 0;
}

.about-stats span {
  font-size: 18px;
  font-weight: bold;
  color: #555555;
  line-height: 2.5;
}

.about-cta {
  margin-top: 40px;
}

.about-cta .btn {
  min-width: 500px;
  padding: 20px 40px;
  font-size: 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.about-cta .btn::before {
  content: "";
  display: inline-block;
  width: 1000px;
  height: 1000px;
  /*background-image: url('data:image/svg+xml;utf8,<svg width="29" height="23" viewBox="0 0 29 23" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4.3125 5.75C4.3125 4.22501 4.9183 2.76247 5.99664 1.68414C7.07497 0.605802 8.53751 0 10.0625 0C11.5875 0 13.05 0.605802 14.1284 1.68414C15.2067 2.76247 15.8125 4.22501 15.8125 5.75C15.8125 7.27499 15.2067 8.73753 14.1284 9.81586C13.05 10.8942 11.5875 11.5 10.0625 11.5C8.53751 11.5 7.07497 10.8942 5.99664 9.81586C4.9183 8.73753 4.3125 7.27499 4.3125 5.75ZM0 21.6658C0 17.241 3.58477 13.6562 8.00957 13.6562H12.1154C16.5402 13.6562 20.125 17.241 20.125 21.6658C20.125 22.4025 19.5275 23 18.7908 23H1.33418C0.597461 23 0 22.4025 0 21.6658ZM22.6406 14.0156V11.1406H19.7656C19.1682 11.1406 18.6875 10.66 18.6875 10.0625C18.6875 9.46504 19.1682 8.98438 19.7656 8.98438H22.6406V6.10938C22.6406 5.51191 23.1213 5.03125 23.7188 5.03125C24.3162 5.03125 24.7969 5.51191 24.7969 6.10938V8.98438H27.6719C28.2693 8.98438 28.75 9.46504 28.75 10.0625C28.75 10.66 28.2693 11.1406 27.6719 11.1406H24.7969V14.0156C24.7969 14.6131 24.3162 15.0938 23.7188 15.0938C23.1213 15.0938 22.6406 14.6131 22.6406 14.0156Z" fill="white"/></svg>');*/
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0;
}

.about-cta .btn::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg width="7" height="12" viewBox="0 0 7 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.76285 5.44335C7.07905 5.74991 7.07905 6.24561 6.76285 6.5489L1.38083 11.7701C1.06463 12.0766 0.55334 12.0766 0.240509 11.7701C-0.0723211 11.4635 -0.0756848 10.9678 0.240509 10.6645L5.0507 6.00102L0.237146 1.33424C-0.0790485 1.02769 -0.0790485 0.531985 0.237146 0.228693C0.55334 -0.0745984 1.06463 -0.0778595 1.37746 0.228693L6.76285 5.44335Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 30px;
}

.about-image {
  position: absolute;
  z-index: 1;
}

.about-circle-img {
  width: 180px;
  height: 230px;
  object-fit: cover;
}

.about-image-1 {
  top: -20px;
  left: 0;
}

.about-image-2 {
  top: 50px;
  right: 0;
}

.about-image-3 {
  bottom: 100px;
  left: 0;
}

.about-image-4 {
  bottom: -20px;
  right: 0;
}

/* Solutions Section */
.solutions-section {
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
}

.solutions-header {
  text-align: left;
  margin-bottom: 80px;
}

.solutions-subtitle {
  font-size: 16px;
  color: #a1a1a1;
  margin-bottom: 15px;
  font-weight: 600;
}

.solutions-subtitle span {
  font-size: 17px;
  color: #00bd94;
  margin-right: 7px;
}

.solutions-title {
  font-size: 48px;
  font-weight: bold;
  color: #00bd94;
  line-height: 1.3;
}

.solutions-list {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.solution-item {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
  justify-content: space-between;
}

.solution-number {
  position: absolute;
  font-size: 615px;
  font-weight: bold;
  color: #efefef;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.solution-1 .solution-number {
  right: -30px;
}

.solution-3 .solution-number {
  right: -30px;
}

.solution-2 .solution-image {
  order: 2;
}

.solution-2 .solution-content {
  order: 1;
  left: 180px;
}

.solution-3 .solution-content {
  order: 1;
  left: -300px;
}

.solution-image {
  position: relative;
  z-index: 1;
  max-width: 365px;
}

.solution-image img {
  width: 100%;
  height: auto;
}

.solution-content {
  position: relative;
  z-index: 1;
  left: -250px;
}

.solution-heading {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.5;
}

.solution-1 .solution-problem,
.solution-1 .solution-answer {
  color: #333333;
}

.solution-1 .solution-problem p,
.solution-1 .solution-answer p {
  color: #555555;
}

.solution-problem,
.solution-answer {
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 3px solid #00bd94;
}

.solution-problem h4{
  font-size: 16px;
  font-weight: bold;
  color: #A1A1A1;
  margin-bottom: 10px;
}
.solution-answer h4 {
  font-size: 16px;
  font-weight: bold;
  color: #00bd94;
  margin-bottom: 10px;
}
.solution-problem p,
.solution-answer p {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  margin: 0;
}

.solutions-section::before {
  content: "";
  position: absolute;
  right: 50px;
  top: 100px;
  width: 2px;
  height: 400px;
  background: linear-gradient(180deg, transparent 0%, #00bd94 50%, transparent 100%);
  opacity: 0.5;
}

.solutions-section::after {
  content: "";
  position: absolute;
  left: 50px;
  bottom: 200px;
  width: 2px;
  height: 400px;
  background: linear-gradient(180deg, transparent 0%, #00bd94 50%, transparent 100%);
  opacity: 0.5;
}

/* Features Section */
.features-section {
  padding: 0 0 150px 0;
}

.features-header {
  text-align: left;
  margin-bottom: 60px;
}

.features-subtitle {
  font-size: 16px;
  color: #a1a1a1;
  margin-bottom: 15px;
  font-weight: 600;
}

.features-subtitle span {
  font-size: 17px;
  color: #00bd94;
  margin-right: 7px;
}

.features-title {
  font-size: 48px;
  font-weight: bold;
  color: #00bd94;
  line-height: 1.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:nth-child(1) {
  transform: translateY(0);
}

.feature-card:nth-child(2) {
  transform: translateY(40px);
}

.feature-card:nth-child(3) {
  transform: translateY(80px);
}

.feature-card:nth-child(4) {
  transform: translateY(0);
}

.feature-card:nth-child(5) {
  transform: translateY(40px);
}

.feature-card:nth-child(6) {
  transform: translateY(80px);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 189, 148, 0.15);
}

.feature-card:nth-child(2):hover {
  transform: translateY(35px);
}

.feature-card:nth-child(3):hover {
  transform: translateY(75px);
}

.feature-card:nth-child(5):hover {
  transform: translateY(35px);
}

.feature-card:nth-child(6):hover {
  transform: translateY(75px);
}

.feature-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon svg {
  width: 60px;
  height: 60px;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #00bd94;
  margin-bottom: 20px;
  line-height: 1.5;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-description {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
  text-align: left;
}

/* Lawyers Carousel Section */
.lawyers-section {
  display: none;
}
.lawyers-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.lawyers-header {
  text-align: left;
  margin-bottom: 60px;
}

.lawyers-subtitle {
  font-size: 16px;
  color: #a1a1a1;
  margin-bottom: 15px;
  font-weight: 600;
}

.lawyers-subtitle span {
  font-size: 17px;
  color: #00bd94;
  margin-right: 7px;
}

.lawyers-title {
  font-size: 48px;
  font-weight: bold;
  color: #00bd94;
  line-height: 1.3;
}

.lawyers-carousel-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.lawyers-carousel {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lawyers-carousel::-webkit-scrollbar {
  display: none;
}

.lawyer-card {
  flex: 0 0 380px;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lawyer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 189, 148, 0.15);
}

.lawyer-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.lawyer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lawyer-info {
  padding: 25px;
}

.lawyer-name {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 15px;
}

.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.lawyer-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #e0f7f3;
  color: #00bd94;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.lawyer-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.star {
  color: #ffd700;
  font-size: 16px;
}

.rating-text {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  margin-left: 5px;
}

.lawyer-description {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #333333;
}

.carousel-nav:hover {
  background: #00bd94;
  border-color: #00bd94;
  color: #ffffff;
}

.carousel-prev {
  left: -25px;
}

.carousel-next {
  right: -25px;
}

/* Steps Section */
.steps-section {
  padding: 100px 0 0 0;
  background: #ffffff;
}

.steps-header {
  text-align: center;
  margin-bottom: 80px;
}

.steps-pretitle {
  font-size: 16px;
  color: #00bd94;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.steps-title {
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  line-height: 1.3;
}

.steps-highlight {
  background: #00bd94;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 8px;
  display: inline-block;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.step-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 189, 148, 0.15);
}

.step-number {
  font-size: 48px;
  font-weight: bold;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1;
}

.step-title {
  font-size: 20px;
  font-weight: bold;
  color: #00bd94;
  margin-bottom: 30px;
  line-height: 1.4;
}

.step-icon {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.step-description {
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
}

.step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.steps-note {
  text-align: center;
  font-size: 14px;
  color: #555555;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.steps-link {
  color: #00bd94;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.steps-link:hover {
  color: #00a085;
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  position: relative;
  background: url(./top-img/cta-back.png);
  background-size: 150%;
  background-position: top;
  background-repeat: no-repeat;
  min-height: 300px;
  height: 700px;
}

.cta-wave-top {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.cta-wave-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-wave-bottom {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.cta-wave-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-background {
  padding: 240px 0 0 0;
  position: absolute;
  margin: 0 auto;
  width: 100%;
}

.cta-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 80px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-logo {
  margin-bottom: 30px;
}

.cta-logo .logo-text {
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  letter-spacing: 2px;
}

.cta-text {
  font-size: 20px;
  color: #555555;
  margin-bottom: 40px;
  letter-spacing: 1.3px;
  line-height: 1.6;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-cta-download {
  background: #ffffff;
  color: #333333;
  border: 2px solid #d9d9d9;
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta-download:hover {
  background: #f6f6f6;
  border-color: #00bd94;
  color: #00bd94;
  transform: translateY(-2px);
}

.btn-cta-signup {
  position: relative;
  overflow: hidden;
  background: #5d83ff;
  color: #ffffff;
  border: solid 1px #5d83ff;
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.4s ease-in-out;
}

.btn-cta-signup > * {
  position: relative;
  z-index: 2;
}

.btn-cta-signup::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 700px;
  height: 500px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease-in-out;
}

.btn-cta-signup:hover {
  color: #5d83ff;
  border: solid 1px #5d83ff;
}

.btn-cta-signup:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.sp {
  display: none;
}

.pc {
  display: inline;
}

/* FAQ Section */
.faq-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  color: #00bd94;
  text-align: center;
  margin-bottom: 60px;
}

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

.faq-item {
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #666666;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-question-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #00bd94;
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #cccccc;
}

.faq-icon-minus {
  display: none;
}

.faq-item.active .faq-icon-plus {
  display: none;
}

.faq-item.active .faq-icon-minus {
  display: block;
}

.faq-answer {
  display: none;
  padding: 24px 35px;
}

.faq-item.active .faq-answer {
  display: flex;
  gap: 16px;
  animation: fadeIn 0.3s ease;
}

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

.faq-answer .faq-icon {
  background-color: #00bd94;
  color: #ffffff;
}

.faq-answer-text {
  flex: 1;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
}

.faq-answer-text p {
  margin: 0 0 12px 0;
}

.faq-answer-text p:last-child {
  margin-bottom: 0;
}

.faq-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.btn-faq-download,
.btn-faq-signup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 400px;
}

.btn-faq-download {
  background-color: #ffffff;
  color: #333333;
  border: 2px solid #e0e0e0;
}

.btn-faq-download:hover {
  background-color: #f8f8f8;
  border-color: #cccccc;
}

.btn-faq-signup {
  background: linear-gradient(135deg, #5d83ff 0%, #7b68ee 100%);
  color: #ffffff;
  border: none;
}

.btn-faq-signup:hover {
  background: linear-gradient(135deg, #4a6fd9 0%, #6854d4 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 131, 255, 0.3);
}

.btn-faq-download .btn-content,
.btn-faq-signup .btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-arrow {
  flex-shrink: 0;
}

/* Icon Styles */
.icon-download {
  display: inline-block;
  width: 13px;
  height: 18px;
  mask-image: url(./top-img/icon-download.svg);
  -webkit-mask-image: url(./top-img/icon-download.svg);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: #555555;
  margin-right: 8px;
  flex-shrink: 0;
}

.btn:hover .icon-download {
  background-color: #ffffff;
}

.icon-download:before {
  content: none;
}

.icon-man {
  display: inline-block;
  width: 28px;
  height: 23px;
  mask-image: url(./top-img/icon-man.svg);
  -webkit-mask-image: url(./top-img/icon-man.svg);
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: #ffffff;
  margin-right: 8px;
  flex-shrink: 0;
}

.btn:hover .icon-man {
  background-color: #5d83ff;
}

.icon-man:before {
  content: none;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET & MOBILE
   ======================================== */

@media (max-width: 768px) {
  /* Header */
  .site-header {
    height: 50px;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 0;
    height: 50px;
    align-items: center;
  }

  .logo-image {
    width: 100px;
    height: 25px;
  }

  .logo-image2 {
    width: 80%;
    height: 75px;
  }

  .mobile-menu-toggle {
    display: flex;
    padding: 5px;
  }

  .main-navigation,
  .header-buttons {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    padding: 30px 0 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .hero-text {
    order: 2;
    width: 100%;
  }

  .hero-image {
    order: 1;
    max-width: 680px;
    max-height: 400px;
    width: 100%;
    margin: 0 auto;
    background-position: center;
    background-size: contain;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-signup {
    display: inline-flex;
  }

  .hero-note {
    display: block;
  }

  #kv-a {
    width: 200px;
    top: 20%;
    left: 50%;
  }

  #kv-b {
    width: 200px;
    top: 36%;
    left: 40%;
  }

  #kv-c {
    width: 200px;
    bottom: 25%;
    left: 50%;
  }

  #kv-d {
    width: 200px;
    bottom: 7%;
    left: 40%;
  }

  /* About Section */
  .about-section {
    padding: 70px 0;
    height: 700px;
    background: url(./top-img/about-back.png);
    background-size: cover;
    background-position: top;
  }

  .about-content {
    padding: 0 20px;
  }

  .about-image {
    position: relative;
    display: inline-block;
    width: 45%;
    margin: 10px 2.5%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  .about-circle-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 20px;
  }

  .about-main-content {
    margin-top: 40px;
  }

  .about-title {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .themil-brand-logo {
    width: 160px;
    height: 35px;
  }

  .about-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.9;
  }

  .about-description br {
    display: none;
  }

  .about-stats {
    padding: 20px;
    margin: 30px 0;
    text-align: left;
  }

  .about-stats p {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }

  .about-stats span {
    font-size: 15px;
    display: block;
    margin-bottom: 10px;
    text-align: center;
    line-height: 2.0;
    color: #8e8e8e;
  }

  .about-cta {
    margin-top: 30px;
  }

  .about-cta .btn {
    min-width: 100%;
    width: 100%;
    padding: 18px 30px;
    font-size: 16px;
  }

  .about-cta .btn::after {
    right: 20px;
  }

  /* Solutions Section */
  .solutions-section {
    padding: 60px 0 0;
  }

  .solutions-section .container {
    padding: 0;
  }

  .solutions-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 20px;
  }

  .solutions-subtitle {
    font-size: 14px;
  }

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

  .solution-item {
    display: block;
    margin-bottom: 100px;
    padding: 0 20px;
  }

  .solution-content {
    left: 60px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
    padding: 20px;
    margin: -70px 0 0 0;
    width: 315px;
  }

  .solution-2 .solution-content {
    left: -20px;
  }

  .solution-2 .solution-image {
    left: 190px;
  }

  .solution-3 .solution-content {
    left: 30px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.10);
    padding: 20px;
    margin: -70px 0 0 0;
    width: 335px;
  }

  .solution-image {
    max-width: 180px;
    margin: 0;
    left: -20px;
  }

  .solution-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  .solution-heading {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: left;
    color: #00bd94;
  }

  .solution-problem {
    margin-bottom: 20px;
    padding: 20px;
    border-left: solid 2px #00bd94;
  }

  .solution-answer {
    margin-bottom: 20px;
    padding: 20px;
    border-left: solid 2px #333333;
  }

  .solution-problem h4,
  .solution-answer h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .solution-problem h4 {
    color: #666666;
  }

  .solution-answer h4 {
    color: #00bd94;
  }

  .solution-problem p,
  .solution-answer p {
    font-size: 14px;
    line-height: 1.7;
  }

  .solutions-section::before,
  .solutions-section::after {
    display: none;
  }

  .solution-item::before {
    content: "SOLUTION";
    position: absolute;
    right: -15px;
    top: 10%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 10px;
    font-weight: bold;
    color: #00bd94;
    letter-spacing: 3px;
    z-index: 2;
  }

  .solution-2::before {
    content: "SOLUTION";
    position: absolute;
    right: 330px;
    top: 10%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 10px;
    font-weight: bold;
    color: #00bd94;
    letter-spacing: 3px;
    z-index: 2;
  }

  .solution-1 .solution-number {
    top: -50px;
    right: 40px;
    font-size: 200px;
    opacity: inherit;
  }

  .solution-2 .solution-number {
    top: -50px;
    left: 30px;
    font-size: 200px;
  }

  .solution-3 .solution-number {
    top: -50px;
    right: 40px;
    font-size: 200px;
  }

  .solution-item .solution-3 {
    margin-bottom: 0px;
  }

  /* Features Section */
  .features-section {
    padding: 60px 0;
  }

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .feature-card:nth-child(5),
  .feature-card:nth-child(6) {
    transform: translateY(0);
  }

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

  /* Lawyers Section */
  .lawyers-section {
    padding: 60px 0;
  }

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

  .lawyer-card {
    flex: 0 0 320px;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }

  /* Steps Section */
  .steps-section {
    padding: 60px 0;
  }

  .steps-header {
    text-align: center;
    margin-bottom: 50px;
  }

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

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 20px 0;
  }

  .step-card {
    padding: 20px;
  }

  /* CTA Section */
  .sp {
    display: inline;
  }

  .pc {
    display: none;
  }

  .cta-section {
    background: url(./top-img/cta-back-sp.png);
    background-size: cover;
    height: 600px;
  }

  .cta-background {
    padding: 60px 0;
  }

  .cta-card {
    padding: 40px 10px;
    border-radius: 16px;
  }

  .cta-logo .logo-text {
    font-size: 36px;
  }

  .cta-text {
    font-size: 18px;
  }

  .cta-buttons {
    margin-top: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .btn-cta-download,
  .btn-cta-signup,
  .btn-primary {
    padding: 16px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  /* FAQ Section */
  .faq-section {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px 16px;
    gap: 12px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .faq-toggle {
    width: 28px;
    height: 28px;
  }

  .faq-answer {
    padding: 0px 18px 20px 18px;
  }

  .faq-answer-text {
    font-size: 14px;
  }

  .faq-cta-buttons {
    flex-direction: column;
    padding: 0 16px;
  }

  .btn-faq-download,
  .btn-faq-signup {
    max-width: 100%;
  }

  /* Footer */
  .site-footer {
    padding: 40px 0 0;
  }

  .footer-content {
    gap: 20px;
  }

  .footer-logo img {
    width: 110px;
    height: 28px;
  }

  .footer-nav {
    gap: 15px;
  }

  .footer-link {
    font-size: 13px;
  }

  /* 480px以下のスタイル */
  @media (max-width: 480px) {
    .logo-image {
      width: 90px;
      height: 23px;
    }

    .themil-brand-logo {
      width: 90px;
      height: 23px;
    }

    .hero-image {
      width: 340px;
      height: 287px;
      margin: 0 auto;
      background: url(./top-img/kv-sp.png) no-repeat;
      background-size: cover;
      background-position: center;
    }

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

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

    #kv-a {
      width: 190px;
      top: 10%;
      left: 30%;
    }

    #kv-b {
      width: 190px;
      top: 35%;
      left: 45%;
    }

    #kv-c {
      width: 190px;
      top: 60%;
      left: 30%;
    }

    #kv-d {
      width: 190px;
      top: 80%;
      left: 50%;
    }

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

    .about-description {
      font-size: 20px;
    }

    .solutions-title {
      font-size: 26px;
    }

    .solution-heading {
      font-size: 20px;
    }

    .solution-problem p,
    .solution-answer p {
      font-size: 13px;
    }

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

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

    .feature-card {
      padding: 30px 20px;
    }

    .feature-title {
      font-size: 18px;
      min-height: auto;
    }

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

    .lawyer-card {
      flex: 0 0 280px;
    }

    .carousel-nav {
      width: 40px;
      height: 40px;
    }

    .steps-pretitle {
      font-size: 14px;
    }

    .step-number {
      font-size: 36px;
    }

    .step-title {
      font-size: 18px;
    }

    .step-icon svg {
      width: 100px;
      height: 80px;
    }

    .cta-wave-top,
    .cta-wave-bottom {
      height: 50px;
    }

    .cta-logo .logo-text {
      font-size: 28px;
    }

    .cta-text {
      font-size: 16px;
      margin-bottom: 30px;
    }

    .cta-text2 {
      color: #555555;
      font-size: 12px;
      line-height: 1.6;
    }

    .footer-logo img {
      width: 160px;
      height: auto;
    }

    .app-content {
      padding: 20px 15px;
    }

    .chat-bubble {
      padding: 12px 15px;
    }

    .chat-bubble h3 {
      font-size: 14px;
    }

    .themil-logo {
      font-size: 24px;
    }
  }
}