/*
Theme Name: BizCraft Studio
Theme URI: https://bizcraft-studio.com
Author: BizCraft Studio
Author URI: https://bizcraft-studio.com
Description: 中小企業・個人事業主向けに、業務システム・HP・AIツールをオーダーメイドで開発するビジネス×クラフトの制作スタジオのコーポレートサイトテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bizcraft-studio
Tags: business, corporate, dark, modern, responsive
*/


/* ================================================
   BizCraft Studio - Corporate Website Stylesheet
   Dark Tech Design Version
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');

/* ================================================
   Reset & Base Styles
   ================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.8;
  color: #E2E8F0;
  background-color: #0A0E27;
  font-size: 16px;
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ================================================
   CSS Animations
   ================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float-center {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -15px);
  }
}

@keyframes float-normal {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.6);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
}

.delay-3 {
  animation-delay: 0.6s;
  opacity: 0;
}

.delay-4 {
  animation-delay: 0.8s;
  opacity: 0;
}

.delay-5 {
  animation-delay: 1s;
  opacity: 0;
}

/* ================================================
   Layout & Container
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%!important;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

.container--wide {
  max-width: 1300px;
}

/* メインコンテンツ */
main,
.main-content {
  min-height: 60vh;
  position: relative;
}

/* セクション共通スタイル */
.section {
  padding: 4rem 5%;
  position: relative;
}

.section--gradient {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.5) 0%, rgba(15, 23, 42, 0.3) 100%);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #FFFFFF;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.section__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #CBD5E1;
  max-width: 700px;
  margin: 0 auto;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 記事コンテンツ */
.article-content {
  font-size: 1rem;
  line-height: 1.9;
  color: #E2E8F0;
  word-break: keep-all;
  overflow-wrap: break-word;
  max-width: 100%;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
}

.article-content blockquote {
  border-left: 4px solid #00D9FF;
  padding-left: 1.5rem;
  margin: 2rem 0;
  color: #CBD5E1;
  font-style: italic;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  overflow-x: auto;
  display: block;
}

.article-content table th,
.article-content table td {
  padding: 0.75rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
  text-align: left;
}

.article-content table th {
  background: rgba(0, 217, 255, 0.1);
  color: #FFFFFF;
  font-weight: 600;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 2.5rem 0 1.5rem;
  color: #FFFFFF;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 2rem 0 1rem;
  color: #FFFFFF;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.article-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 1.5rem 0 1rem;
  color: #FFFFFF;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.article-content ul,
.article-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.article-content a {
  color: #00D9FF;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content a:hover {
  color: #38BDF8;
}

/* ================================================
   Header & Navigation
   ================================================ */
.header {
  background-color: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 1px 3px rgba(0, 217, 255, 0.1), 0 0 40px rgba(0, 217, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.header__logo {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.header__logo span {
  color: #FFFFFF;
  font-weight: 500;
}

.header__nav-toggle {
  display: none;
}

.header__nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1002;
  position: relative;
  padding: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}

.header__nav-toggle-label span {
  display: block;
  width: 25px;
  height: 3px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8);
  transition: all 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.header__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  position: relative;
}

/* PC版では nav-header のみ非表示、nav-inner は表示 */
.header__nav-header {
  display: none;
}

/* PC版では nav-inner を透過的にして、メニューリストを直接表示 */
.header__nav-inner {
  display: contents;
}

.header__nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item a {
  color: #CBD5E1;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.header__nav-item a:hover {
  color: #00D9FF;
}

.header__nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.header__nav-item a:hover::after {
  width: 100%;
}

.header__nav-item--cta a {
  background: linear-gradient(135deg, #00D9FF 0%, #38BDF8 100%);
  color: #0A0E27;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4), 0 0 30px rgba(0, 217, 255, 0.2);
}

.header__nav-item--cta a::after {
  display: none;
}

.header__nav-item--cta a:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.6), 0 0 50px rgba(0, 217, 255, 0.4);
}

/* ================================================
   Dropdown Menu (Sub Menu)
   ================================================ */
.header__nav-item {
  position: relative;
}

.header__nav-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.1);
  z-index: 1000;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
}

.header__nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__nav-item .sub-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item .sub-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #CBD5E1;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.header__nav-item .sub-menu a::after {
  display: none;
}

.header__nav-item .sub-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #00D9FF, #38BDF8);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.header__nav-item .sub-menu a:hover {
  color: #00D9FF;
  background: rgba(0, 217, 255, 0.1);
  padding-left: 2rem;
}

.header__nav-item .sub-menu a:hover::before {
  transform: scaleY(1);
}

/* サブメニューがある場合の親メニューアイテムのスタイル */
.header__nav-item.menu-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header__nav-item.menu-item-has-children > a {
  flex: 1;
}

/* サブメニュートグルボタン */
.header__nav-toggle-submenu {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CBD5E1;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  flex-shrink: 0;
  border-radius: 4px;
}

.header__nav-toggle-submenu:hover {
  color: #00D9FF;
  background: rgba(0, 217, 255, 0.1);
}

.header__nav-toggle-submenu:focus {
  outline: 2px solid rgba(0, 217, 255, 0.5);
  outline-offset: 2px;
}

.header__nav-toggle-icon {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.header__nav-item.menu-item-has-children:hover .header__nav-toggle-icon,
.header__nav-item.menu-item-has-children.active .header__nav-toggle-icon {
  transform: rotate(180deg);
}

/* PC版では、ホバー時にサブメニューを表示 */
.header__nav-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* PC版では、トグルボタンをクリックしてもサブメニューを表示（ホバーと同様） */
@media (min-width: 769px) {
  .header__nav-item.menu-item-has-children.active .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ================================================
   Mobile Navigation
   ================================================ */
@media (max-width: 768px) {
  .header__nav-toggle-label {
    display: flex !important;
    z-index: 1003 !important;
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
  }
  
  .header__nav-toggle-label span {
    pointer-events: none;
  }

  /* メニューオーバーレイ - メニューが開いている時のみ表示 */
  #nav-toggle:checked ~ .header__nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* モバイルブラウザのビューポート高さに対応 */
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    pointer-events: auto;
    display: block;
  }
  
  /* メニューが閉じている時はオーバーレイを非表示 */
  .header__nav::before {
    display: none;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh; /* モバイルブラウザのビューポート高さに対応 */
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
    backdrop-filter: blur(20px);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease;
    padding: 0;
    border-left: 1px solid rgba(0, 217, 255, 0.2);
    z-index: 1001;
    overflow: hidden;
    display: block;
    gap: 0;
    align-items: stretch;
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* モバイル版では nav-inner と nav-header を表示 */
  .header__nav-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  /* モバイルメニューヘッダー */
  .header__nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    position: relative;
  }

  .header__nav-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D9FF, #38BDF8, #00D9FF);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
  }

  .header__nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
  }

  .header__nav-logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .header__nav-logo span {
    color: #00D9FF;
  }

  .header__nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: #00D9FF;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.3s ease;
  }

  .header__nav-close:hover {
    color: #38BDF8;
    transform: rotate(90deg);
  }

  .header__nav-close span {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    flex: 1;
  }

  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  }

  .header__nav-item:last-child {
    border-bottom: none;
  }

  .header__nav-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 1.5rem;
    color: #FFFFFF;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.5;
  }

  .header__nav-item a::after {
    display: none;
  }

  .header__nav-item a:hover,
  .header__nav-item.current > a,
  .header__nav-item.current-menu-item > a,
  .header__nav-item.current-menu-ancestor > a {
    color: #00D9FF;
    background: rgba(0, 217, 255, 0.1);
  }

  .header__nav-item.current-menu-item > a,
  .header__nav-item.current-menu-ancestor > a {
    font-weight: 600;
    border-left: 3px solid #00D9FF;
    padding-left: calc(1.5rem - 3px);
  }

  .header__nav-item--cta a {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(56, 189, 248, 0.2) 100%);
    color: #00D9FF;
    font-weight: 600;
  }

  .header__nav-item--cta a:hover {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.3) 0%, rgba(56, 189, 248, 0.3) 100%);
  }

  /* サブメニューがある場合の親メニューアイテム */
  .header__nav-item.menu-item-has-children {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    position: relative;
  }

  /* 親項目のリンクとトグルボタンを横並びにする */
  .header__nav-item.menu-item-has-children > a {
    flex: 1;
    width: 100%;
    padding-right: 50px;
    position: relative;
  }

  .header__nav-item.menu-item-has-children > a::after {
    display: none;
  }

  .header__nav-toggle-submenu {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }

  .header__nav-toggle-submenu:hover {
    color: #00D9FF;
    background: rgba(0, 217, 255, 0.1);
  }

  .header__nav-toggle-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  .header__nav-item.menu-item-has-children.active .header__nav-toggle-icon {
    transform: rotate(90deg);
  }

  /* モバイルでのサブメニュー - 親項目の下に縦に表示 */
  .header__nav-item .sub-menu {
    position: static !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 217, 255, 0.05);
    border: none;
    border-left: 3px solid rgba(0, 217, 255, 0.4);
    border-radius: 0;
    margin: 0;
    margin-top: 0;
    padding: 0;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    list-style: none;
    display: block !important;
    width: 100% !important;
    clear: both;
    flex-direction: column;
    top: auto !important;
    left: auto !important;
    right: auto !important;
  }

  .header__nav-item.menu-item-has-children.active .sub-menu {
    max-height: 1000px;
    display: block !important;
  }

  .header__nav-item .sub-menu li {
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
  }

  .header__nav-item .sub-menu li:last-child {
    border-bottom: none;
  }

  .header__nav-item .sub-menu a {
    padding: 1.1rem 1.5rem 1.1rem 2.5rem;
    font-size: 0.95rem;
    color: #F1F5F9;
    display: block;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    line-height: 1.5;
  }

  .header__nav-item .sub-menu a::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #00D9FF;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .header__nav-item .sub-menu a:hover,
  .header__nav-item .sub-menu .current-menu-item > a,
  .header__nav-item .sub-menu .current-menu-ancestor > a {
    color: #00D9FF;
    background: rgba(0, 217, 255, 0.15);
    padding-left: 3rem;
    font-weight: 600;
  }

  .header__nav-item .sub-menu a:hover::before,
  .header__nav-item .sub-menu .current-menu-item > a::before,
  .header__nav-item .sub-menu .current-menu-ancestor > a::before {
    opacity: 1;
  }

  /* アクティブなサブメニューアイテムの強調 */
  .header__nav-item .sub-menu .current-menu-item > a {
    background: rgba(0, 217, 255, 0.2);
    border-left: 3px solid #00D9FF;
    padding-left: calc(3rem - 3px);
  }

  /* メニューを開く */
  #nav-toggle:checked ~ .header__nav {
    right: 0;
  }

  /* ハンバーガーメニューのアニメーション */
  #nav-toggle:checked ~ .header__nav-toggle-label {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1002;
  }

  #nav-toggle:checked ~ .header__nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: #00D9FF;
  }

  #nav-toggle:checked ~ .header__nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle:checked ~ .header__nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #00D9FF;
  }

  /* メニューが開いている時のボディスクロール無効化（モバイルのみ） */
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
  }

  html.menu-open {
    overflow: hidden !important;
    height: 100% !important;
  }
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 5rem 0 6rem;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(15, 23, 42, 0.90) 50%, rgba(10, 14, 39, 0.85) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%);
  z-index: 0;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero__content {
  animation: fadeInUp 0.8s ease-out;
}

.hero__title {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  position: relative;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.hero__title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #CBD5E1;
  margin-bottom: 2rem;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__description {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.7;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  position: relative;
}

.hero__description::before {
  content: '💡';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 10px #00D9FF);
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  position: relative;
  margin-right: -50px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero__visual-orbs {
  position: relative;
  width: 500px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__orb {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.3), rgba(0, 150, 200, 0.15), rgba(10, 14, 39, 0.8));
  box-shadow: 
    0 0 60px rgba(0, 217, 255, 0.4),
    0 0 120px rgba(0, 217, 255, 0.2),
    inset 0 -20px 40px rgba(0, 217, 255, 0.1),
    inset 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 217, 255, 0.3);
  transition: all 0.4s ease;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

.hero__orb:visited,
.hero__orb:link {
  color: inherit;
  text-decoration: none;
}

.hero__orb:hover {
  text-decoration: none;
}

.hero__orb:visited,
.hero__orb:link {
  color: inherit;
  text-decoration: none;
}

.hero__orb:hover {
  text-decoration: none;
}

.hero__orb--1 {
  top: 0;
  left: 50%;
  animation: float-center 6s ease-in-out infinite;
}

.hero__orb--1:hover {
  animation: none;
  transform: translate(-50%, 0) scale(1.08);
  box-shadow: 
    0 0 80px rgba(0, 217, 255, 0.6),
    0 0 160px rgba(0, 217, 255, 0.3),
    inset 0 -20px 40px rgba(0, 217, 255, 0.15),
    inset 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero__orb--2 {
  bottom: 0;
  left: 0;
  animation: float-normal 6s ease-in-out infinite 2s;
}

.hero__orb--2:hover {
  animation: none;
  transform: translateY(0) scale(1.08);
  box-shadow: 
    0 0 80px rgba(0, 217, 255, 0.6),
    0 0 160px rgba(0, 217, 255, 0.3),
    inset 0 -20px 40px rgba(0, 217, 255, 0.15),
    inset 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero__orb--3 {
  bottom: 0;
  right: 0;
  animation: float-normal 6s ease-in-out infinite 4s;
}

.hero__orb--3:hover {
  animation: none;
  transform: translateY(0) scale(1.08);
  box-shadow: 
    0 0 80px rgba(0, 217, 255, 0.6),
    0 0 160px rgba(0, 217, 255, 0.3),
    inset 0 -20px 40px rgba(0, 217, 255, 0.15),
    inset 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero__orb-number {
  font-size: 1.1rem;
  font-weight: 300;
  color: #00D9FF;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.hero__orb-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__orb-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  color: #CBD5E1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ================================================
   Buttons
   ================================================ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background: linear-gradient(135deg, #00D9FF 0%, #38BDF8 100%);
  color: #0A0E27;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4), 0 0 30px rgba(0, 217, 255, 0.2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.6), 0 0 50px rgba(0, 217, 255, 0.4);
}

.btn--secondary {
  background-color: rgba(15, 23, 42, 0.8);
  color: #FFFFFF;
  border: 2px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background-color: rgba(15, 23, 42, 0.95);
  border-color: #00D9FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3), 0 0 30px rgba(0, 217, 255, 0.2);
}

/* ================================================
   Section
   ================================================ */
.section {
  padding: 5rem 0;
  position: relative;
  background-color: #0A0E27;
}

.section--gray {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
}

/* .section--gradient は上で定義済み */

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(0, 217, 255, 0.5), transparent);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section__header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.section__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.section__subtitle {
  font-size: 1.1rem;
  color: #94A3B8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ================================================
   Card Grid
   ================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card-grid--3col {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* ================================================
   Card
   ================================================ */
.card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.card:hover::before {
  transform: scaleX(1);
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  transition: all 0.5s ease;
}

.card:hover::after {
  top: -30%;
  right: -30%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.2);
  border-color: rgba(0, 217, 255, 0.5);
}

.card__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00D9FF 0%, #38BDF8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #0A0E27;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0, 217, 255, 0.4), 0 0 40px rgba(0, 217, 255, 0.2);
  position: relative;
}

.card__icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  border-radius: 18px;
  opacity: 0.4;
  filter: blur(8px);
  z-index: -1;
}

.card__number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1;
  position: relative;
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
}

.card__number::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #00D9FF, transparent);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.card__text {
  color: #CBD5E1;
  line-height: 1.8;
  font-size: 0.95rem;
}

.card__label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(56, 189, 248, 0.2));
  color: #00D9FF;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.3), 0 0 20px rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.card__price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFFFFF, #CBD5E1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card__list {
  list-style: none;
  margin: 1.5rem 0;
}

.card__list-item {
  padding: 0.8rem 0;
  color: #CBD5E1;
  font-size: 0.95rem;
  position: relative;
  padding-left: 2rem;
}

.card__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.card__list-item::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #0A0E27;
  font-weight: 700;
  font-size: 0.7rem;
}

/* ================================================
   Reason Section & Cards
   ================================================ */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reason-card {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.4) 0%, rgba(30, 41, 59, 0.4) 100%);
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.reason-card:nth-child(even) {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.reason-card:hover {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.7) 100%);
  border-color: rgba(0, 217, 255, 0.3);
}

.reason-card__number {
  font-size: 5rem;
  font-weight: 900;
  color: rgba(56, 189, 248, 0.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 120px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  letter-spacing: -0.05em;
  text-shadow: 0 0 40px rgba(56, 189, 248, 0.2);
}

.reason-card__content {
  flex: 1;
  min-width: 0;
}

.reason-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.reason-card__text {
  color: #CBD5E1;
  line-height: 1.8;
  font-size: 0.95rem;
}

.reason-card__image {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 217, 255, 0.1);
  position: relative;
}

.reason-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.reason-card:hover .reason-card__image img {
  transform: scale(1.05);
}

/* ================================================
   Service Section & Cards
   ================================================ */
.section--dark {
  background: linear-gradient(135deg, #0A0E27 0%, #0F172A 100%);
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 217, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 217, 255, 0.2);
}

.service-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0A0E27 0%, #1E293B 100%);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__content {
  padding: 2rem;
  background: #FFFFFF;
}

.service-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0A0E27;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-card__subtitle {
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  display: inline-block;
  white-space: nowrap;
}

.service-card__text {
  color: #475569;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.service-card__link {
  display: inline-block;
  color: #00D9FF;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.service-card__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8);
  transition: width 0.3s ease;
}

.service-card__link:hover {
  color: #38BDF8;
  transform: translateX(4px);
}

.service-card__link:hover::after {
  width: 100%;
}

/* ================================================
   Testimonial Card
   ================================================ */
.testimonial-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 8rem;
  color: rgba(0, 217, 255, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.4);
}

.testimonial-card__quote {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.testimonial-card__quote::before {
  content: '💬';
  margin-right: 0.5rem;
  font-size: 1.1rem;
  filter: drop-shadow(0 0 10px #00D9FF);
}

.testimonial-card__text {
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  position: relative;
  z-index: 1;
}

.testimonial-card__author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00D9FF 0%, #38BDF8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A0E27;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4), 0 0 30px rgba(0, 217, 255, 0.2);
  position: relative;
}

.testimonial-card__author-avatar::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(6px);
  z-index: -1;
}

.testimonial-card__author-info {
  flex: 1;
}

.testimonial-card__author-name {
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.testimonial-card__author-title {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* ================================================
   Testimonial Spotlight (New Design)
   ================================================ */
.testimonial-spotlight {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.testimonial-spotlight__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-spotlight__media {
  flex: 0 0 280px;
  width: 280px;
  height: 280px;
  position: relative;
}

.testimonial-spotlight__media img {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-spotlight__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-spotlight__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.testimonial-spotlight__tag {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: linear-gradient(135deg, #0EA5E9, #38BDF8);
  border-radius: 4px;
  font-size: 0.8rem;
  color: #FFFFFF;
  font-weight: 600;
}

.testimonial-spotlight__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.5;
  margin: 0;
}

.testimonial-spotlight__title strong {
  color: #0EA5E9;
}

.testimonial-spotlight__kpi {
  background: #FFFFFF;
  border: 2px solid #0EA5E9;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  align-self: flex-start;
}

.testimonial-spotlight__kpi-label {
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 500;
}

.testimonial-spotlight__kpi-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.3;
}

.testimonial-spotlight__kpi-value strong {
  color: #0EA5E9;
  font-size: 1.25rem;
}

.testimonial-spotlight__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.testimonial-spotlight__meta-item {
  font-size: 0.9rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-spotlight__meta-item::before {
  font-size: 0.9rem;
}

.testimonial-spotlight__meta-item--product::before {
  content: '📦';
}

.testimonial-spotlight__meta-item--period::before {
  content: '📅';
}

.testimonial-spotlight__meta-label {
  color: #64748B;
  font-weight: 500;
}

.testimonial-spotlight__text {
  color: #475569;
  line-height: 1.8;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-spotlight {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .testimonial-spotlight__content {
    width: 100%;
    order: 2;
  }

  .testimonial-spotlight__media {
    flex: none;
    width: 200px;
    height: 200px;
    order: 1;
    margin: 0 auto;
  }

  .testimonial-spotlight__media img {
    width: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
  }

  .testimonial-spotlight__title {
    font-size: 1.25rem;
  }

  .testimonial-spotlight__kpi-value {
    font-size: 1rem;
  }
}

/* ================================================
   Work Card
   ================================================ */
.work-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(20px);
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8, #00D9FF);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.2);
  border-color: rgba(0, 217, 255, 0.5);
}

.work-card__header {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  padding: 2.5rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.work-card__header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.work-card__category {
  display: inline-block;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  color: #0A0E27;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4), 0 0 30px rgba(0, 217, 255, 0.2);
  position: relative;
  z-index: 1;
}

.work-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}

.work-card__body {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.work-card__section {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.work-card__section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: calc(100% - 10px);
  background: linear-gradient(180deg, #00D9FF, #38BDF8);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.work-card__section:last-child {
  margin-bottom: 0;
}

.work-card__section-title {
  font-weight: 700;
  color: #00D9FF;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.work-card__section-text {
  color: #CBD5E1;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ================================================
   Case Study (Works Page - New Design)
   ================================================ */
.case-studies {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.case-study {
  display: grid;
  grid-template-columns: 22% 50% 28%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
  border-bottom: 1px solid rgba(0, 217, 255, 0.15);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.case-study:first-child {
  border-radius: 16px 16px 0 0;
}

.case-study:last-child {
  border-radius: 0 0 16px 16px;
  border-bottom: none;
}

.case-study:hover {
  background: linear-gradient(135deg, rgba(20, 30, 55, 0.98) 0%, rgba(35, 50, 70, 0.95) 100%);
}

/* Left Column - Company Info */
.case-study__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(0, 217, 255, 0.1);
}

.case-study__tag {
  display: inline-block;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  color: #0A0E27;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.4);
}

.case-study__icon {
  width: 48px;
  height: 48px;
  color: #00D9FF;
  margin: 0.5rem 0;
}

.case-study__icon svg {
  width: 100%;
  height: 100%;
}

.case-study__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.5;
}

/* Middle Column - Before/After */
.case-study__middle {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 1.5rem;
  gap: 0.5rem;
}

.case-study__phase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.case-study__phase--double {
  flex: 1.5;
}

.case-study__phase-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.case-study__phase-icon {
  width: 40px;
  height: 40px;
  color: #00D9FF;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.case-study__phase-icon svg {
  width: 36px;
  height: 36px;
}

.case-study__phase-icon span {
  font-size: 0.65rem;
  color: #94A3B8;
  font-weight: 600;
}

.case-study__phase-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.case-study__phase-connector {
  color: #00D9FF;
  font-weight: 700;
  font-size: 0.9rem;
}

.case-study__phase-text {
  font-size: 0.8rem;
  color: #CBD5E1;
  line-height: 1.5;
  max-width: 140px;
}

.case-study__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00D9FF;
  font-size: 0.9rem;
  padding: 0 0.25rem;
  margin-top: 2rem;
  opacity: 0.7;
}

/* Right Column - Effect */
.case-study__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(0, 217, 255, 0.1);
}

.case-study__effect-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94A3B8;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.case-study__metric {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.case-study__number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.case-study__metric--down .case-study__number {
  background: linear-gradient(135deg, #F97316, #FB923C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-study__label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #00D9FF;
}

.case-study__metric--down .case-study__label {
  color: #F97316;
}

.case-study__chart {
  width: 70px;
  height: 40px;
  margin-bottom: 0.5rem;
}

.case-study__chart svg {
  width: 100%;
  height: 100%;
}

.case-study__effect-text {
  font-size: 0.75rem;
  color: #94A3B8;
  line-height: 1.5;
}

/* Case Study Responsive */
@media (max-width: 1024px) {
  .case-study {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .case-study__left {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }

  .case-study__icon {
    width: 36px;
    height: 36px;
    margin: 0;
  }

  .case-study__title {
    flex: 1;
    min-width: 200px;
  }

  .case-study__title br {
    display: none;
  }

  .case-study__middle {
    flex-wrap: wrap;
    padding: 0;
    gap: 1rem;
    justify-content: center;
  }

  .case-study__phase {
    min-width: 120px;
  }

  .case-study__arrow {
    margin-top: 0;
  }

  .case-study__right {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-left: none;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding-left: 0;
    padding-top: 1.5rem;
    gap: 1rem;
  }

  .case-study__effect-title {
    width: 100%;
  }

  .case-study__chart {
    order: 3;
  }

  .case-study__effect-text {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 640px) {
  .case-study {
    padding: 1.5rem 1rem;
  }

  .case-study__left {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study__title {
    font-size: 1rem;
  }

  .case-study__middle {
    flex-direction: column;
    align-items: center;
  }

  .case-study__arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .case-study__phase-text {
    max-width: 100%;
  }

  .case-study__right {
    flex-direction: column;
    align-items: flex-start;
  }

  .case-study__number {
    font-size: 1.8rem;
  }
}

/* ================================================
   About Section
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.about-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
}

.about-section__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #00D9FF;
  position: relative;
  box-shadow: 0 3px 20px rgba(0, 217, 255, 0.3);
}

.about-section__title::before {
  content: '📋';
  margin-right: 0.5rem;
  font-size: 1.4rem;
  filter: drop-shadow(0 0 10px #00D9FF);
}

.about-section:nth-child(2) .about-section__title::before {
  content: '👤';
}

.about-section__text {
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-section__list {
  list-style: none;
}

.about-section__list-item {
  padding: 0.9rem 0;
  color: #CBD5E1;
  position: relative;
  padding-left: 2rem;
  line-height: 1.7;
}

.about-section__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.about-section__list-item::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: #0A0E27;
  font-weight: 700;
  font-size: 0.65rem;
}

/* ================================================
   About Page - Profile Section
   ================================================ */
.about-profile {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
  position: relative;
  backdrop-filter: blur(10px);
  max-width: 900px;
  margin: 0 auto;
}

.about-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8, #00D9FF);
  border-radius: 16px 16px 0 0;
}

.about-profile__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-profile__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00D9FF, #38BDF8);
  border-radius: 2px;
}

.about-profile__text {
  color: #CBD5E1;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-profile__list {
  list-style: none;
}

.about-profile__list-item {
  padding: 0.9rem 0;
  color: #CBD5E1;
  position: relative;
  padding-left: 2rem;
  line-height: 1.7;
}

.about-profile__list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

.about-profile__list-item::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: #0A0E27;
  font-weight: 700;
  font-size: 0.65rem;
}

/* ================================================
   About Page - Message Section
   ================================================ */
.section--message {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.3) 0%, rgba(15, 23, 42, 0.6) 100%);
  padding: 6rem 0;
}

.message-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.message-block__headline {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00D9FF;
  line-height: 1.8;
  margin-bottom: 3rem;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.message-block__body {
  text-align: center;
}

.message-block__body p {
  color: #CBD5E1;
  line-height: 2.2;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.message-block__body p:last-child {
  margin-bottom: 0;
}

/* ================================================
   About Page - Value Cards (3 columns)
   ================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 217, 255, 0.1);
}

.value-card__image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.value-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.value-card:hover .value-card__image img {
  transform: scale(1.05);
}

.value-card__content {
  padding: 1.5rem;
}

.value-card__number {
  font-size: 2rem;
  font-weight: 800;
  color: #00D9FF;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  position: relative;
  display: inline-block;
}

.value-card__number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00D9FF, transparent);
  border-radius: 2px;
}

.value-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}

.value-card__text {
  color: #CBD5E1;
  line-height: 1.7;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-card__image {
    height: 180px;
  }
}

/* ================================================
   Form
   ================================================ */
.form {
  max-width: 700px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  position: relative;
  backdrop-filter: blur(20px);
}

.form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8, #00D9FF);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.form__group {
  margin-bottom: 1.8rem;
}

.form__label {
  display: block;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.form__label::before {
  content: '●';
  color: #00D9FF;
  margin-right: 0.5rem;
  font-size: 0.6rem;
  filter: drop-shadow(0 0 5px #00D9FF);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: rgba(10, 14, 39, 0.6);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: #00D9FF;
  box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.15), 0 0 30px rgba(0, 217, 255, 0.2);
  background-color: rgba(10, 14, 39, 0.8);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__submit {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #00D9FF 0%, #38BDF8 100%);
  color: #0A0E27;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4), 0 0 30px rgba(0, 217, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.form__submit::before {
  content: '📧';
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.form__submit::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.form__submit:hover::after {
  width: 300px;
  height: 300px;
}

.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.6), 0 0 50px rgba(0, 217, 255, 0.4);
}

.form__note {
  margin-top: 1.8rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(56, 189, 248, 0.15));
  border-radius: 10px;
  color: #00D9FF;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid rgba(0, 217, 255, 0.3);
  position: relative;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}

.form__note::before {
  content: 'ℹ️';
  margin-right: 0.5rem;
  filter: drop-shadow(0 0 5px #00D9FF);
}

/* ================================================
   Contact Form 7 Styles
   ================================================ */
.contact-form-wrapper {
  max-width: 700px;
  margin: 3rem auto 0;
}

/* Contact Form 7 フォーム全体 */
.wpcf7-form {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  position: relative;
  backdrop-filter: blur(20px);
}

.wpcf7-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8, #00D9FF);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

/* Contact Form 7 フォームグループ */
.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.8rem;
}

/* Contact Form 7 ラベル */
.wpcf7-form label {
  display: block;
  color: #E2E8F0;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.wpcf7-form .wpcf7-form-control-wrap label {
  margin-bottom: 0.5rem;
}

/* Contact Form 7 必須マーク */
.wpcf7-form .wpcf7-required {
  color: #F87171;
  margin-left: 0.25rem;
}

/* Contact Form 7 入力フィールド */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 8px;
  color: #E2E8F0;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: #00D9FF;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
  background: rgba(30, 41, 59, 0.95);
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder {
  color: #64748B;
}

.wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Form 7 セレクトボックス */
.wpcf7-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300D9FF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Contact Form 7 チェックボックス・ラジオボタン */
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  cursor: pointer;
  accent-color: #00D9FF;
}

.wpcf7-form .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.wpcf7-form .wpcf7-list-item label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
}

/* Contact Form 7 送信ボタン */
.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
  background: linear-gradient(135deg, #00D9FF 0%, #38BDF8 100%);
  color: #0A0E27;
  padding: 1rem 3rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4), 0 0 30px rgba(0, 217, 255, 0.2);
  width: 100%;
  margin-top: 1rem;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.6), 0 0 50px rgba(0, 217, 255, 0.4);
}

.wpcf7-form input[type="submit"]:active,
.wpcf7-form .wpcf7-submit:active {
  transform: translateY(0) scale(1);
}

/* Contact Form 7 バリデーションメッセージ */
.wpcf7-not-valid-tip {
  color: #F87171;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: block;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng,
.wpcf7-mail-sent-ok {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
}

.wpcf7-mail-sent-ok {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86EFAC;
}

.wpcf7-spinner {
  margin-left: 0.5rem;
}

/* Contact Form 7 レスポンシブ */
@media (max-width: 768px) {
  .contact-form-wrapper {
    margin: 2rem auto 0;
  }

  .wpcf7-form {
    padding: 2rem 1.5rem;
  }

  .wpcf7-form input[type="submit"],
  .wpcf7-form .wpcf7-submit {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }
}

/* ================================================
   CTA Section
   ================================================ */
.cta-section {
  background: linear-gradient(135deg, #0A0E27 0%, #0F172A 50%, #1E293B 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.cta-subtitle {
  font-size: 1rem;
  color: #00D9FF;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.cta-text {
  font-size: 1.1rem;
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #00D9FF 0%, #38BDF8 100%);
  color: #0A0E27;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4), 0 0 40px rgba(0, 217, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 217, 255, 0.6), 0 0 60px rgba(0, 217, 255, 0.4);
}

/* ================================================
   Service Detail Page - Page Hero
   ================================================ */
.page-hero {
  background: linear-gradient(135deg, #0A0E27 0%, #0F172A 50%, #1E293B 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(0, 217, 255, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
}

.page-hero__subtitle {
  font-size: 1.2rem;
  color: #CBD5E1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.page-hero__buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   Service Detail Page - Flow Steps
   ================================================ */
.flow-steps {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.flow-step {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 2.5rem;
  background: rgba(226, 232, 240, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.flow-step:hover {
  background: rgba(226, 232, 240, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.flow-step::after {
  content: '▼';
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #38BDF8;
  font-size: 1.5rem;
  opacity: 0.6;
}

.flow-step:last-child::after {
  display: none;
}

.flow-step__image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flow-step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.flow-step:hover .flow-step__image img {
  transform: scale(1.05);
}

.flow-step__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.flow-step__badge {
  display: inline-block;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  width: fit-content;
  letter-spacing: 0.05em;
}

.flow-step__number {
  display: none;
}

.flow-step__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.flow-step__text {
  color: #CBD5E1;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ================================================
   Service Detail Page - FAQ Section
   ================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-item {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.1);
}

.faq-item__question {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.faq-item__question::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: #0A0E27;
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.3);
}

.faq-item__answer {
  color: #CBD5E1;
  line-height: 1.8;
  font-size: 0.95rem;
  padding-left: 2.5rem;
}

/* ================================================
   Service Detail Page - Feature List
   ================================================ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 217, 255, 0.1);
}

.feature-item__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px #00D9FF);
}

.feature-item__image {
  width: 100%;
  height: 140px;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  overflow: hidden;
}

.feature-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.feature-item__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}

.feature-item__text {
  color: #CBD5E1;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ================================================
   Service Detail Page - Before/After
   ================================================ */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.before-after-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.before-after-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.15);
}

.before-after-card__label {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.before-after-card__label--before {
  background: linear-gradient(135deg, rgba(255, 82, 82, 0.2), rgba(239, 68, 68, 0.2));
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.before-after-card__label--after {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(56, 189, 248, 0.2));
  color: #00D9FF;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.before-after-card__text {
  color: #CBD5E1;
  line-height: 1.8;
  font-size: 1rem;
}

/* ================================================
   Service Detail Page - Strength List
   ================================================ */
.strength-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.strength-item {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-radius: 16px;
  padding: 0;
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}

.strength-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.15);
}

.strength-item__image {
  width: 180px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.strength-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.strength-item:hover .strength-item__image img {
  transform: scale(1.05);
}

.strength-item__content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strength-item__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.strength-item__text {
  color: #CBD5E1;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ================================================
   Service Detail Page - Use Case List
   ================================================ */
.usecase-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.usecase-item {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  padding-left: 3.5rem;
}

.usecase-item::before {
  content: '✓';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #0A0E27;
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.3);
}

.usecase-item:hover {
  transform: translateX(6px);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 217, 255, 0.1);
}

.usecase-item__text {
  color: #E2E8F0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ================================================
   Footer
   ================================================ */
.footer {
  background: linear-gradient(135deg, #0A0E27 0%, #0F172A 100%);
  color: #FFFFFF;
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8, #00D9FF);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.8);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Footer Main Content */
.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

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

.footer__column--logo {
  max-width: 300px;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer__logo span {
  color: #00D9FF;
}

.footer__description {
  color: #94A3B8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer__column-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer__column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8);
  border-radius: 2px;
}

.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__nav-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav-link {
  color: #CBD5E1;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer__nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #38BDF8);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

.footer__nav-link:hover {
  color: #00D9FF;
}

.footer__nav-link:hover::after {
  width: 100%;
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__legal-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__legal-link {
  color: #94A3B8;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer__legal-link:hover {
  color: #00D9FF;
}

.footer__separator {
  color: #64748B;
  font-size: 0.85rem;
}

.footer__bottom-right {
  display: flex;
  align-items: center;
}

.footer__copyright {
  color: #64748B;
  font-size: 0.9rem;
  margin: 0;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .section__title {
    font-size: 2rem;
  }

  .hero__visual {
    margin-right: 0;
  }

  .hero__visual-orbs {
    width: 100%;
    max-width: 400px;
  }

  .hero__orb {
    width: 180px;
    height: 180px;
  }

  .hero__orb-title {
    font-size: 1.1rem;
  }

  .hero__orb-subtitle {
    font-size: 0.85rem;
  }
}

/* ================================================
   レスポンシブ対応 - 基本レイアウト
   ================================================ */
@media (max-width: 768px) {
  /* コンテナのパディング調整 */
  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .container--narrow {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header__container {
    padding: 0 16px;
    min-height: 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header__logo {
    font-size: 1.25rem;
    gap: 0.4rem;
  }

  .header__logo-icon {
    width: 32px;
    height: 32px;
  }

  .footer__container {
    padding: 0 16px;
  }

  /* セクションのパディング調整 */
  .section {
    padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 2rem;
  }

  .section__title {
    font-size: 1.75rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
  }

  .section__subtitle {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 1rem;
  }

  /* 記事コンテンツの調整 */
  .article-content {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .article-content h2 {
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 2rem 0 1rem;
  }

  .article-content h3 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 1.5rem 0 0.75rem;
  }

  .article-content h4 {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 1.25rem 0 0.75rem;
  }

  .article-content ul,
  .article-content ol {
    padding-left: 1.5rem;
  }

  .article-content li {
    margin-bottom: 0.5rem;
  }

  /* ヒーローセクション */
  .hero {
    padding: 2rem 0 3rem;
    min-height: auto;
    background-attachment: scroll;
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .hero__container {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 2rem;
    text-align: center;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__content {
    width: 100%;
    padding: 0;
    max-width: 100%;
    box-sizing: border-box;
    display: contents;
  }

  .hero__title {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 0.5rem;
    order: 1;
  }

  .hero__title br {
    display: block;
  }

  .hero__title::before {
    width: 40px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* 3つの丸をタイトルの下に配置 */
  .hero__visual {
    order: 2;
    margin-top: 0;
    margin-bottom: 1.5rem;
    justify-content: center;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    padding: 0;
    box-sizing: border-box;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: auto;
    padding: 0 0.5rem;
    order: 3;
  }

  .hero__subtitle br {
    display: block;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
    order: 4;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero__description {
    font-size: 0.85rem;
    line-height: 1.7;
    padding: 1.5rem 0.5rem 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: auto;
    box-sizing: border-box;
    order: 5;
  }

  /* グリッドレイアウトの調整 */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .work-grid,
  .case-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* フッターの調整 */
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer__column--logo {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }

  .footer__legal-nav {
    flex-wrap: wrap;
  }

  /* カードの調整 */
  .service-card,
  .work-card,
  .case-card,
  .testimonial-card {
    margin-bottom: 1.5rem;
  }

  /* フォームの調整 */
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

  /* ボタンの調整 */
  .btn {
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .btn--secondary {
    margin-top: 0.75rem;
  }

  /* テキストの改行調整 */
  h1, h2, h3, h4, h5, h6 {
    word-break: keep-all;
    overflow-wrap: break-word;
    line-height: 1.5;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  p, li, span, a {
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  /* テキストサイズの自動調整を防ぐ（iOS） */
  body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  /* ページヘッダーの調整 */
  .page-hero {
    padding: 4rem 0 2rem;
  }

  .page-hero__title {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .page-header {
    padding: 4rem 0 2rem;
  }

  .page-header__title {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  /* カードグリッドの調整 */
  .card-grid,
  .card-grid--3col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* テーブルの調整 */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* 画像の調整 */
  img {
    height: auto;
    max-width: 100%;
  }

  /* リストの調整 */
  ul, ol {
    padding-left: 1.5rem;
  }

  /* 引用の調整 */
  blockquote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* タブレットサイズ（769px - 1024px） */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section__title {
    font-size: 2rem;
  }

  .hero__container {
    gap: 3rem;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .work-grid,
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer__main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* 大きなデスクトップ（1400px以上） */
@media (min-width: 1400px) {
  .container {
    max-width: 1420px;
  }

  .container--wide {
    max-width: 1600px;
  }
}

@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer__column--logo {
    grid-column: 1;
  }

  .footer__column-title {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .footer__nav-link {
    font-size: 0.85rem;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .footer__bottom-left,
  .footer__bottom-right {
    width: 100%;
  }

  .footer__legal-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer__copyright {
    font-size: 0.85rem;
  }

  .form {
    padding: 2rem 1.5rem;
  }

  /* このセクションは上で定義済みのため削除 */

  .hero__visual-orbs {
    width: 100%;
    max-width: 340px;
    height: 340px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }

  .hero__orb {
    width: 160px;
    height: 160px;
  }

  .hero__orb-number {
    font-size: 0.9rem;
  }

  .hero__orb-title {
    font-size: 1rem;
    word-break: keep-all;
  }

  .hero__orb-subtitle {
    font-size: 0.8rem;
    word-break: keep-all;
  }

  .card {
    padding: 2rem;
  }

  .card__icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .card__number {
    font-size: 2.5rem;
  }

  .service-card__image {
    height: 200px;
  }

  .flow-step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
  }

  .flow-step__image {
    height: 200px;
  }

  .flow-step__title {
    font-size: 1.1rem;
  }

  .service-card__content {
    padding: 1.5rem;
  }

  .reason-card {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .reason-card__number {
    font-size: 4rem;
    min-width: auto;
  }

  .reason-card__image {
    width: 100%;
    max-width: 400px;
    height: 200px;
  }

  .cta-section {
    padding: 4rem 0;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }

  .strength-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .strength-item {
    flex-direction: column;
  }

  .strength-item__image {
    width: 100%;
    height: 220px;
  }

  .strength-item__content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0 2.5rem;
  }

  .hero__container {
    gap: 1.5rem;
  }

  .hero__title {
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 0 0.25rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 0.25rem;
  }

  .hero__buttons {
    padding: 0 0.25rem;
  }

  .hero__description {
    padding: 1.5rem 0.25rem 0;
    font-size: 0.8rem;
  }

  .hero__visual {
    margin-top: 1.5rem;
  }

  .hero__visual-orbs {
    max-width: 300px;
    height: 300px;
  }

  .hero__orb {
    width: 140px;
    height: 140px;
  }

  .hero__orb-title {
    font-size: 0.9rem;
  }

  .hero__orb-subtitle {
    font-size: 0.75rem;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .card {
    padding: 1.5rem;
  }

  .testimonial-card,
  .about-section {
    padding: 1.5rem;
  }

  .work-card__header,
  .work-card__body {
    padding: 1.5rem;
  }

  .card__icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .testimonial-card::before {
    font-size: 5rem;
    right: 15px;
    top: 10px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card__image {
    height: 180px;
  }

  .service-card__content {
    padding: 1.2rem;
  }

  .service-card__title {
    font-size: 1.1rem;
  }

  .reason-card {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .reason-card__number {
    font-size: 2.8rem;
  }

  .reason-card__title {
    font-size: 1.1rem;
  }

  .reason-card__text {
    font-size: 0.85rem;
  }

  .reason-card__image {
    height: 160px;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
  }

  .cta-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
  }

  .about-profile {
    padding: 2rem;
  }

  .about-profile__title {
    font-size: 1.3rem;
  }

  .message-block__headline {
    font-size: 1.4rem;
    line-height: 1.9;
  }

  .message-block__body p {
    font-size: 0.9rem;
  }
}

/* iPhone小さい画面（375px以下）対応 */
@media (max-width: 375px) {
  .container {
    padding: 0 12px;
  }

  .container--narrow {
    padding: 0 12px;
  }

  .header__container {
    padding: 0 12px;
  }

  .hero {
    padding: 1.25rem 0 2rem;
  }

  .hero__title {
    font-size: 1.35rem;
    padding: 0 0.25rem;
  }

  .hero__subtitle {
    font-size: 0.85rem;
    padding: 0 0.25rem;
  }

  .hero__buttons {
    padding: 0 0.25rem;
  }

  .hero__description {
    font-size: 0.75rem;
    padding: 1.25rem 0.25rem 0;
  }

  .hero__visual-orbs {
    max-width: 280px;
    height: 280px;
  }

  .hero__orb {
    width: 120px;
    height: 120px;
  }

  .hero__orb-title {
    font-size: 0.85rem;
  }

  .hero__orb-subtitle {
    font-size: 0.7rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }
}

/* iPhone横画面・大きい画面（414px以上）対応 */
@media (min-width: 415px) and (max-width: 480px) {
  .hero__title {
    font-size: 1.6rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }
}

/* ================================================
   Article LP Styles (CRM/SFA Page)
   ================================================ */

/* Article Hero */
.page-hero--article {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.article-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.article-hero__content {
  min-width: 0;
}

.article-hero__badges {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(56, 189, 248, 0.1) 100%);
  border: 1px solid rgba(0, 217, 255, 0.4);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #00D9FF;
  font-weight: 500;
}

.article-hero__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
}

.article-hero__title--ma-tool {
  font-size: 1.9rem;
  line-height: 1.6;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.article-hero__lead {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 2;
}

.article-hero__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.article-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article Container */
.container--article {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Article Section Titles */
.section__title--left {
  text-align: left;
  margin-bottom: 2rem;
}

/* Article Content */
.article-content {
  color: #E2E8F0;
  line-height: 2;
  font-size: 1.05rem;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content p:last-child {
  margin-bottom: 0;
}

.article-content strong {
  color: #00D9FF;
  font-weight: 600;
}

/* Article Lists */
.article-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.article-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #E2E8F0;
}

.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  border-radius: 50%;
}

.article-list--check li::before {
  content: '✓';
  background: none;
  color: #00D9FF;
  font-weight: bold;
  font-size: 1rem;
  top: 0;
  width: auto;
  height: auto;
}

/* Article H3 */
.article-h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid #00D9FF;
}

/* Problem List */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.15);
}

.problem-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.problem-item__icon::after {
  content: '✓';
  color: #0A0E27;
  font-size: 0.85rem;
  font-weight: bold;
}

.problem-item__text {
  color: #E2E8F0;
  line-height: 1.7;
  font-size: 1rem;
}

/* Mid CTA Section */
.section--cta-mid {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(56, 189, 248, 0.02) 100%);
  padding: 3rem 0;
}

.cta-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 217, 255, 0.3);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 60px rgba(0, 217, 255, 0.1);
}

.cta-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-card__text {
  color: #CBD5E1;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.cta-card__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Before/After Cards */
.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.before-after__card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.before-after__card--before {
  border-color: rgba(148, 163, 184, 0.3);
}

.before-after__card--after {
  border-color: rgba(0, 217, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.before-after__label {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.before-after__card--before .before-after__label {
  background: rgba(148, 163, 184, 0.2);
  color: #94A3B8;
}

.before-after__card--after .before-after__label {
  background: linear-gradient(135deg, #00D9FF, #38BDF8);
  color: #0A0E27;
}

.before-after__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.before-after__list {
  list-style: none;
  padding: 0;
}

.before-after__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.before-after__card--before .before-after__list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #94A3B8;
  font-weight: bold;
}

.before-after__card--after .before-after__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: bold;
}

.before-after__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #00D9FF;
}

.before-after__arrow::after {
  content: '→';
}

/* FAQ List (Article) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Visual Explanation Section */
.visual-explanation {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 2.5rem;
  align-items: start;
}

.visual-explanation--reverse {
  grid-template-columns: 55% 45%;
}

.visual-explanation--reverse .visual-explanation__image {
  order: 2;
}

.visual-explanation--reverse .visual-explanation__content {
  order: 1;
}

.visual-explanation__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.visual-explanation__image img {
  width: 100%;
  height: auto;
  display: block;
}

.visual-explanation__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visual-explanation__lead {
  font-size: 1.1rem;
  color: #E2E8F0;
  line-height: 1.9;
}

.visual-explanation__lead strong {
  color: #00D9FF;
}

.visual-explanation__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visual-explanation__conclusion {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.9;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.visual-explanation__conclusion strong {
  color: #00D9FF;
}

/* Point Cards */
.point-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.4) 100%);
  border: 1px solid rgba(0, 217, 255, 0.15);
}

.point-card--problem {
  border-left: 3px solid #94A3B8;
}

.point-card--solution {
  border-left: 3px solid #00D9FF;
}

.point-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.point-card__text {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.7;
}

.point-card__text strong {
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

/* Empathy Block */
.empathy-block {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 3rem;
  align-items: center;
}

.empathy-block__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.empathy-block__image img {
  width: 100%;
  height: auto;
  display: block;
}

.empathy-block__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.empathy-block__quote {
  font-size: 1.15rem;
  color: #FFFFFF;
  line-height: 1.9;
  padding-left: 1rem;
  border-left: 3px solid #00D9FF;
}

.empathy-block__text {
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 2;
}

/* Strength Grid Section */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.strength-card {
  position: relative;
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(0, 217, 255, 0.15);
}

.strength-card__image {
  flex: 0 0 40%;
  max-width: 40%;
  overflow: hidden;
}

.strength-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.strength-card:hover .strength-card__image img {
  transform: scale(1.05);
}

.strength-card__content {
  flex: 1;
  padding: 1.5rem 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strength-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00D9FF;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.strength-card__text {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.8;
}

.strength-card__number {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0, 217, 255, 0.15);
  line-height: 1;
  pointer-events: none;
}

/* Responsive: Article LP */
@media (max-width: 768px) {
  .page-hero--article {
    padding-top: 100px;
    padding-bottom: 2rem;
  }

  .article-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article-hero__content {
    order: 1;
  }

  .article-hero__image {
    order: 2;
  }

  .article-hero__title {
    font-size: 1.6rem;
  }

  .article-hero__lead {
    font-size: 0.95rem;
  }

  .article-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .article-content {
    font-size: 0.95rem;
  }

  .article-h3 {
    font-size: 1.15rem;
  }

  .before-after {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .before-after__arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .cta-card {
    padding: 1.5rem;
  }

  .cta-card__title {
    font-size: 1.2rem;
  }

  .cta-card__buttons {
    flex-direction: column;
  }

  .cta-card__buttons .btn {
    width: 100%;
  }

  .visual-explanation {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .visual-explanation--reverse {
    grid-template-columns: 1fr;
  }

  .visual-explanation--reverse .visual-explanation__image,
  .visual-explanation--reverse .visual-explanation__content {
    order: unset;
  }

  .visual-explanation__lead {
    font-size: 1rem;
  }

  .point-card {
    padding: 0.85rem 1rem;
  }

  .point-card__icon {
    font-size: 1.3rem;
  }

  .point-card__text {
    font-size: 0.9rem;
  }

  .point-card__text strong {
    font-size: 0.95rem;
  }

  .strength-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .strength-card {
    flex-direction: column;
  }

  .strength-card__image {
    flex: none;
    max-width: 100%;
    height: 180px;
  }

  .strength-card__content {
    padding: 1.25rem;
  }

  .strength-card__title {
    font-size: 1.1rem;
  }

  .strength-card__text {
    font-size: 0.9rem;
  }

  .strength-card__number {
    font-size: 2.5rem;
    bottom: 0.5rem;
    right: 0.75rem;
  }

  .empathy-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .empathy-block__quote {
    font-size: 1rem;
  }

  .empathy-block__text {
    font-size: 0.95rem;
  }

  .before-after {
    flex-direction: column;
  }

  .before-after__arrow {
    transform: rotate(90deg);
  }
}

.article-content__lead {
  font-size: 1.3rem;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
}

.ideal-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.ideal-list__item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ideal-list__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: bold;
}

.reason-block {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.reason-block__title {
  color: #00D9FF;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.reason-block__lead {
  color: #e2e8f0;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.reason-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.reason-list__item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

.reason-list__item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-size: 1.5rem;
  line-height: 1;
}

.reason-block__note {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-top: 1rem;
  font-style: italic;
}

.before-after {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.before-after__card {
  flex: 1;
  padding: 1.5rem;
  border-radius: 12px;
  position: relative;
}

.before-after__card--before {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.before-after__card--after {
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.before-after__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.before-after__card--before .before-after__label {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.before-after__card--after .before-after__label {
  background: rgba(0, 217, 255, 0.2);
  color: #00D9FF;
}

.before-after__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.before-after__list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
}

.before-after__card--before .before-after__list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: bold;
}

.before-after__card--after .before-after__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: bold;
}

.before-after__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #00D9FF;
  font-weight: bold;
}

.article-hero__cta {
  margin-top: 1.5rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form__group {
  margin-bottom: 1.5rem;
}

.contact-form__label {
  display: block;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-form__required {
  color: #f87171;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #00D9FF;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #64748b;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__submit {
  text-align: center;
  margin-top: 2rem;
}

.btn--large {
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

/* ================================================
   Column Page Styles
   ================================================ */

/* Page Header for Column */
.page-header {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, #0A0E27 0%, #1E293B 100%);
}

.page-header__content {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}

.page-header__text {
  flex: 1;
}

.page-header__hero-image {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.page-header__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.page-header__subtitle {
  font-size: 1.1rem;
  color: #94A3B8;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: #00D9FF;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb__separator {
  color: #64748B;
}

/* Column Section Title */
.column-section__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-tab {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  color: #94A3B8;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.category-tab:hover {
  color: #00D9FF;
  border-color: #00D9FF;
}

.category-tab--active {
  color: #fff;
  background: linear-gradient(135deg, #00D9FF 0%, #0EA5E9 100%);
  border-color: transparent;
}

/* Column Grid */
.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.column-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* Column Card */
.column-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.column-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.column-card__link {
  display: block;
}

.column-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.column-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.column-card:hover .column-card__image img {
  transform: scale(1.05);
}

.column-card__content {
  padding: 1.25rem;
}

.column-card__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: #00D9FF;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.column-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-card__excerpt {
  font-size: 0.875rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.column-card__date {
  font-size: 0.8rem;
  color: #64748B;
}

.column-card__readmore {
  font-size: 0.8rem;
  color: #00D9FF;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 0.9rem;
  color: #94A3B8;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pagination__item:hover {
  color: #00D9FF;
  border-color: #00D9FF;
}

.pagination__item--current {
  color: #fff;
  background: linear-gradient(135deg, #00D9FF 0%, #0EA5E9 100%);
  border-color: transparent;
}

.pagination__ellipsis {
  color: #64748B;
  padding: 0 0.5rem;
}

.pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  height: 2.5rem;
  font-size: 0.9rem;
  color: #00D9FF;
  background: transparent;
  border: 1px solid #00D9FF;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pagination__next:hover {
  background: rgba(0, 217, 255, 0.1);
}

/* Article Header */
.article-header {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, #0A0E27 0%, #1E293B 100%);
}

.article-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-header__category {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.8rem;
  color: #fff;
  background: linear-gradient(135deg, #00D9FF 0%, #0EA5E9 100%);
  border-radius: 4px;
}

.article-header__date {
  font-size: 0.875rem;
  color: #94A3B8;
}

.article-header__title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

/* Article Body */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  color: #E2E8F0;
  font-size: 1rem;
  line-height: 1.9;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body__h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #00D9FF;
}

.article-body__h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 2rem 0 1rem;
}

.article-body__list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-body__list li {
  margin-bottom: 0.75rem;
  position: relative;
}

.article-body__list li::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: #00D9FF;
  border-radius: 50%;
}

/* Article TOC */
.article-toc {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.article-toc__title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.article-toc__list {
  margin: 0;
  padding-left: 1.25rem;
  counter-reset: toc-counter;
}

.article-toc__list li {
  margin-bottom: 0.5rem;
  counter-increment: toc-counter;
}

.article-toc__list li::marker {
  color: #00D9FF;
}

.article-toc__list a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.article-toc__list a:hover {
  color: #00D9FF;
}

/* Responsive - Column Page */
@media (max-width: 1024px) {
  .column-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .column-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .page-header__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .page-header__hero-image {
    max-width: 100%;
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 2rem;
  }
  
  .page-header__title {
    font-size: 1.75rem;
  }
  
  .page-header__hero-image {
    max-width: 100%;
  }
  
  .column-grid,
  .column-grid--3col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-tabs {
    gap: 0.5rem;
  }
  
  .category-tab {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }
  
  .article-header {
    padding: 6rem 0 2rem;
  }
  
  .article-header__title {
    font-size: 1.5rem;
  }
  
  .article-body__h2 {
    font-size: 1.25rem;
  }
  
  .article-toc {
    padding: 1.25rem 1.5rem;
  }
}

/* ================================================
   Case Studies Section
   ================================================ */

.case-section {
  padding: 5rem 0;
}

.case-section__label {
  font-size: 0.85rem;
  color: #00D9FF;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.case-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  position: relative;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.case-card__header {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  text-align: left;
}

.case-card__label {
  display: block;
  font-size: 0.65rem;
  color: #6366F1;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.case-card__number {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: #6366F1;
  line-height: 1;
  margin-top: 0.1rem;
}

.case-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.case-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.case-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}

.case-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

.case-card__footer {
  padding: 1rem 1.25rem 1.25rem;
}

.case-card__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  background: #EEF2FF;
  color: #4F46E5;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.case-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.35rem;
}

.case-card__name span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #64748B;
}

.case-card__hashtags {
  font-size: 0.75rem;
  color: #94A3B8;
  margin: 0;
  line-height: 1.5;
}

.case-section__cta {
  text-align: center;
  margin-top: 3rem;
}

.btn--large {
  padding: 1rem 3rem;
  font-size: 1rem;
}

/* Responsive - Case Section */
@media (max-width: 992px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .case-card__title {
    font-size: 0.9rem;
  }
  
  .case-card__number {
    font-size: 1.75rem;
  }
  
  .case-card__footer {
    padding: 1rem;
  }
}

/* ================================================
   Testimonial Spotlight Link
   ================================================ */
.testimonial-spotlight__link {
  display: inline-block;
  margin-top: 1rem;
  color: #00D9FF;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonial-spotlight__link:hover {
  color: #38BDF8;
  text-decoration: underline;
}

/* ================================================
   Voice Detail Page
   ================================================ */
.voice-detail {
  display: block;
}

.voice-detail__main {
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 217, 255, 0.1);
}

.voice-detail__meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.voice-detail__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.voice-detail__meta-label {
  font-size: 0.85rem;
  color: #94A3B8;
}

.voice-detail__meta-value {
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
}

.voice-detail__section {
  margin-bottom: 2rem;
}

.voice-detail__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00D9FF;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid #00D9FF;
}

.voice-detail__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #CBD5E1;
  margin-bottom: 0.75rem;
}

.voice-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.voice-detail__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.voice-detail__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-weight: bold;
}

.voice-detail__cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.voice-detail__sidebar {
  position: sticky;
  top: 100px;
}

.voice-detail__image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  .voice-detail {
    grid-template-columns: 1fr;
  }
  
  .voice-detail__sidebar {
    order: -1;
    position: static;
  }
  
  .voice-detail__image {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .voice-detail__main {
    padding: 1.5rem;
  }
  
  .voice-detail__meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .voice-detail__cta {
    flex-direction: column;
  }
  
  .voice-detail__cta .btn {
    width: 100%;
    text-align: center;
  }
}
