/* =====================================================
   AIダッシュ運用 LP スタイルシート
   カラーパレット：
     白背景:  #FFFFFF
     ネイビー: #0f2044
     シアン:   #00b4d8
     オレンジ: #ff6b35
   フォント：Noto Sans JP + Oswald
===================================================== */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #ffffff;
  color: #1a1a2e;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  line-height: 1.3;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e55a25, #ff6b35);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
  transform: translateY(-2px);
}

.btn-cta {
  background: #ff6b35;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-cta:hover {
  background: #e55a25;
  transform: translateY(-1px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ===== ACCENT COLORS ===== */
.accent-cyan {
  color: #00b4d8;
}

.accent-orange {
  color: #ff6b35;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header.left-align {
  text-align: left;
}

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #0f2044;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 2px solid #0f2044;
  box-shadow: 0 2px 12px rgba(15, 32, 68, 0.08);
  transition: box-shadow 0.3s ease;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-ai {
  color: #00b4d8;
}

.logo-dash {
  color: #0f2044;
}

.logo-un {
  color: #0f2044;
  font-size: 1rem;
  font-weight: 500;
}

.header-nav {
  display: flex;
  gap: 24px;
  flex: 1;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0f2044;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #00b4d8;
}

.header-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f2044;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  padding: 16px 24px;
  gap: 12px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1rem;
  color: #0f2044;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-cta {
  margin-top: 8px;
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0f2044 0%, #1a3a6e 60%, #0f2044 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.85rem;
  color: #00b4d8;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.badge {
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-urgency {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 8px 32px rgba(0, 180, 216, 0.3));
  animation: float 4s ease-in-out infinite;
}

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

/* ===== PROBLEM ===== */
.problem {
  padding: 96px 0;
  background: #f8f9ff;
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e8eaf6;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.check-icon {
  font-size: 1.2rem;
  color: #ff6b35;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

.problem-conclusion {
  text-align: center;
  background: linear-gradient(135deg, #0f2044, #1a3a6e);
  color: #ffffff;
  padding: 32px 40px;
  border-radius: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.problem-conclusion strong {
  color: #00b4d8;
  font-size: 1.4rem;
}

/* ===== SOLUTION ===== */
.solution {
  padding: 96px 0;
  background: #ffffff;
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00b4d8;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f2044;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.media-list {
  background: #f8f9ff;
  border-radius: 8px;
  padding: 16px 20px;
}

.media-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f2044;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.media-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.media-tags span {
  background: #0f2044;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 4px;
}

.solution-image img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  width: 100%;
}

/* ===== FEATURES ===== */
.features {
  padding: 96px 0;
  background: #0f2044;
}

.features .section-title {
  color: #ffffff;
}

.features .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(0, 180, 216, 0.1);
  border-color: rgba(0, 180, 216, 0.5);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #00b4d8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ===== COMPARISON ===== */
.comparison {
  padding: 96px 0;
  background: #f8f9ff;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}

.comparison-table th {
  background: #0f2044;
  color: #ffffff;
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e8eaf6;
  text-align: center;
  color: #444;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #0f2044;
}

.comparison-table tr:nth-child(even) td {
  background: #f4f6ff;
}

.comparison-table .highlight-col {
  background: rgba(0, 180, 216, 0.08);
  color: #0f2044;
  font-weight: 600;
}

.comparison-table th.highlight-col {
  background: #00b4d8;
  color: #ffffff;
}

.comparison-table tr:nth-child(even) .highlight-col {
  background: rgba(0, 180, 216, 0.14);
}

/* ===== RESULTS ===== */
.results {
  padding: 96px 0;
  background: #ffffff;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.kpi-card {
  background: linear-gradient(135deg, #0f2044, #1a3a6e);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  color: #ffffff;
}

.kpi-num {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.kpi-big {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00b4d8;
  display: block;
  line-height: 1.1;
  margin: 4px 0;
}

.kpi-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.results-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.case-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card {
  background: #ffffff;
  border: 1px solid #e8eaf6;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.case-tag {
  display: inline-block;
  background: #0f2044;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.case-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f2044;
  margin-bottom: 12px;
}

.case-row {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
  align-items: flex-start;
}

.case-label {
  font-size: 0.75rem;
  font-weight: 700;
  background: #f0f2ff;
  color: #0f2044;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}

.case-row p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

.case-row.result .case-label {
  background: #00b4d8;
  color: #ffffff;
}

.case-row.result p {
  color: #0f2044;
}

.results-image img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: sticky;
  top: 80px;
}

/* ===== CREATIVE (スリガラス) ===== */
.creative {
  padding: 96px 0;
  background: #0f2044;
}

.creative .section-title {
  color: #ffffff;
}

.creative .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

/* クリエイティブブロック：画像+すりガラス 一体化 */
.creative-block {
  position: relative;
  border-radius: 16px;
  overflow: hidden; /* ここでoverflow:hiddenを持つ */
}

/* 画像エリア */
.creative-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.creative-img-item {
  overflow: hidden;
}

.creative-img-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: blur(8px) brightness(0.45);
  transform: scale(1.08);
  pointer-events: none;
  user-select: none;
}

/* すりガラスオーバーレイ：creative-blockの下半に重なる */
.creative-frosted {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 18, 42, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 180, 216, 0.4);
  padding: 40px 40px 44px;
  text-align: center;
  z-index: 10;
}

.creative-frosted h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.creative-frosted p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 24px;
}

.lock-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* 古いfrosted-overlayクラスは削除済み */

/* ===== PROOF (驚き演出) ===== */
.proof {
  padding: 96px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
}

.proof-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.proof-badge {
  display: inline-block;
  background: #00b4d8;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.proof .section-title {
  margin-bottom: 24px;
}

.proof-body {
  font-size: 1rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 24px;
}

.proof-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2044;
  line-height: 1.7;
  margin-bottom: 40px;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.proof-stat {
  background: #ffffff;
  border: 1px solid #e0e8ff;
  border-radius: 12px;
  padding: 24px 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.proof-stat-label {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
}

.proof-stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f2044;
}

/* ===== PRICING ===== */
.pricing {
  padding: 96px 0;
  background: #ffffff;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border: 2px solid #0f2044;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 32, 68, 0.1);
}

.pricing-main {
  background: linear-gradient(135deg, #0f2044, #1a3a6e);
  color: #ffffff;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
}

.pricing-price {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #00b4d8;
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-notes span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.pricing-detail {
  padding: 48px 40px;
  background: #ffffff;
}

.pricing-detail p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.pricing-quote {
  border-left: 4px solid #00b4d8;
  padding: 12px 20px;
  background: #f0fbff;
  color: #0f2044;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 28px;
  border-radius: 0 8px 8px 0;
}

/* ===== FLOW ===== */
.flow {
  padding: 96px 0;
  background: #f8f9ff;
}

.flow-steps {
  max-width: 680px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid #e8eaf6;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.flow-step-final {
  border: 2px solid #00b4d8;
  background: linear-gradient(135deg, #f0fbff, #e8f8ff);
}

.flow-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  background: #0f2044;
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  line-height: 1.2;
}

.flow-step-final .flow-step-num {
  background: #00b4d8;
}

.flow-step-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f2044;
  margin-bottom: 6px;
}

.flow-step-content p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
}

.flow-arrow {
  text-align: center;
  color: #00b4d8;
  font-size: 1.2rem;
  padding: 4px 0;
}

/* ===== FAQ ===== */
.faq {
  padding: 96px 0;
  background: #ffffff;
}

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

.faq-item {
  border-bottom: 1px solid #e8eaf6;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f2044;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #00b4d8;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: #00b4d8;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer.open {
  display: block;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  padding-left: 0;
}

/* ===== COMPANY ===== */
.company {
  padding: 96px 0;
  background: #f8f9ff;
}

.company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.company-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.company-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f2044;
  margin-bottom: 24px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th {
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f2044;
  padding: 10px 0;
  width: 100px;
  vertical-align: top;
  border-bottom: 1px solid #e8eaf6;
}

.company-table td {
  font-size: 0.9rem;
  color: #444;
  padding: 10px 0;
  line-height: 1.6;
  border-bottom: 1px solid #e8eaf6;
}

.business-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.business-list li {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
  padding-left: 4px;
}

/* ===== POC IMAGE ===== */
.poc-image-wrap {
  margin: 32px auto;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(0, 180, 216, 0.3);
}

.poc-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #0f2044 0%, #1a3a6e 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.final-cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 24px;
}

.final-cta-body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 20px;
}

.final-cta-quote {
  border-left: 4px solid #00b4d8;
  padding: 12px 20px;
  background: rgba(0, 180, 216, 0.1);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 28px;
  border-radius: 0 8px 8px 0;
  text-align: left;
  max-width: 600px;
}

.final-cta-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.final-cta-badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 20px;
}

.final-cta-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.timerex-wrap {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  margin-top: 8px;
}

.timerex-wrap iframe {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: #0a1628;
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-logo .logo-ai {
  color: #00b4d8;
}

.footer-logo .logo-dash,
.footer-logo .logo-un {
  color: #ffffff;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #00b4d8;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.45);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.floating-cta-btn:hover {
  background: linear-gradient(135deg, #e55a25, #ff6b35);
  box-shadow: 0 6px 28px rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
}

.floating-cta-icon {
  font-size: 1.1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-cta-wrap {
    align-items: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 320px;
  }

  .solution-inner {
    grid-template-columns: 1fr;
  }

  .solution-image {
    order: -1;
  }

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

  .kpi-row {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .results-inner {
    grid-template-columns: 1fr;
  }

  .results-image {
    display: none;
  }

  .proof-stats {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .company-inner {
    grid-template-columns: 1fr;
  }

  .checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .creative-gallery {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    bottom: 20px;
    right: 16px;
  }

  .floating-cta-btn {
    padding: 12px 16px;
    font-size: 0.82rem;
  }

  .creative-frosted {
    padding: 28px 20px 32px;
  }

  .pricing-detail {
    padding: 32px 24px;
  }

  .final-cta-quote {
    text-align: center;
  }
}

/* ===== Creative Frosted Wrap（Python加工済み画像＋パネル一体化） ===== */
.creative-frosted-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.creative-frosted-img {
  width: 100%;
  height: auto;
  display: block;
}
.creative-frosted-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 40px 36px;
  text-align: center;
  background: rgba(13, 31, 78, 0.0); /* 画像側で既に加工済みのため透明 */
}
.creative-frosted-panel .lock-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.creative-frosted-panel h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.5;
}
.creative-frosted-panel p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .creative-frosted-panel {
    padding: 20px 20px 24px;
  }
  .creative-frosted-panel h3 {
    font-size: 1rem;
  }
}

/* ===== Creative Grid（ユーザー加工済みすりガラス画像3枚） ===== */
.creative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
}
.creative-card {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  line-height: 0;
}
.creative-card img {
  width: 100%;
  height: auto;
  display: block;
}
.creative-lock-panel {
  background: linear-gradient(135deg, rgba(13,31,78,0.97) 0%, rgba(10,40,100,0.97) 100%);
  border: 1px solid rgba(0,212,255,0.25);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 36px 40px 40px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.creative-lock-panel .lock-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.creative-lock-panel h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.5;
}
.creative-lock-panel p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .creative-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .creative-card {
    border-radius: 12px 12px 0 0;
  }
  .creative-lock-panel {
    padding: 24px 20px 28px;
  }
  .creative-lock-panel h3 {
    font-size: 1rem;
  }
}
