/* ============================================
   CSS Variables
   ============================================ */
:root {
  --primary: #1E3A5F;
  --primary-dark: #152D4A;
  --primary-light: rgba(30, 58, 95, 0.08);
  --accent: #B45309;
  --accent-dark: #92400E;
  --accent-light: rgba(180, 83, 9, 0.08);
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-card: #FFFFFF;
  --text: #111827;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 16px;
  --text-hero: clamp(36px, 5vw, 56px);
  --text-h2: clamp(28px, 3.5vw, 40px);
  --text-h3: clamp(20px, 2.5vw, 24px);
  --text-body: 16px;
  --text-small: 14px;
  --text-caption: 12px;
  --space-section: clamp(80px, 10vw, 120px);
  --space-group: clamp(40px, 5vw, 64px);
  --space-element: clamp(16px, 2vw, 24px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.5s ease-out;
}

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

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ============================================
   Container & Section
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.section {
  padding: var(--space-section) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-cta {
  background: #0F172A;
  color: #fff;
}

/* ============================================
   Scroll Animation
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.visible .stagger-item:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll.visible .stagger-item:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll.visible .stagger-item:nth-child(3) { transition-delay: 0.15s; }
.animate-on-scroll.visible .stagger-item:nth-child(4) { transition-delay: 0.2s; }
.animate-on-scroll.visible .stagger-item:nth-child(5) { transition-delay: 0.25s; }
.animate-on-scroll.visible .stagger-item:nth-child(6) { transition-delay: 0.3s; }

/* ============================================
   Section Header
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-group);
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: var(--text-body);
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.35);
  background: var(--primary-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-link {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: var(--text-small);
  transition: all 0.2s ease;
  background: none;
  border: none;
}

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

/* ============================================
   Forms
   ============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  font-family: inherit;
  background: #fff;
  color: var(--text);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.form-input::placeholder {
  color: #9CA3AF;
}

select.form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-note {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--text-caption);
  color: var(--text-muted);
  margin-top: 12px;
}

.form-row {
  display: flex;
  gap: 16px;
}

/* ============================================
   Header
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #111827;
}

.logo svg {
  color: var(--primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ============================================
   Hamburger & Mobile Menu
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1002;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.mobile-close {
  background: none;
  border: none;
  color: var(--text);
  padding: 4px;
  cursor: pointer;
}

.mobile-menu-links {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-links a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  transition: color 0.2s ease;
}

.mobile-menu-links a:hover {
  color: var(--primary);
}

.mobile-menu-links .btn-primary {
  margin-top: 24px;
  text-align: center;
  border-bottom: none;
  color: #fff;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(30, 58, 95, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(180, 83, 9, 0.15);
  border-radius: 100px;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-tag svg {
  flex-shrink: 0;
}

.hero-text h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.highlight {
  color: var(--accent);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: rgba(180, 83, 9, 0.12);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.hero-form-card h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-h3);
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text);
}

/* ============================================
   Challenges Section
   ============================================ */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.challenge-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.challenge-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 12px;
  color: var(--primary);
  margin-bottom: 20px;
}

.challenge-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.challenge-card p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.7;
}

.challenge-solution {
  text-align: center;
  margin-top: var(--space-group);
  padding: 32px;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
}

.challenge-solution p {
  font-size: var(--text-body);
  color: var(--primary);
  font-weight: 500;
  line-height: 1.8;
}

.challenge-solution strong {
  font-weight: 700;
  color: var(--primary-dark);
}

/* ============================================
   Programs Section
   ============================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: var(--text-caption);
  font-weight: 700;
  background: var(--accent);
  color: #fff;
}

.program-card-body {
  padding: 24px;
}

.program-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.program-card p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.program-tags span {
  font-size: var(--text-caption);
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 4px;
  font-weight: 500;
}

.program-meta {
  display: flex;
  gap: 16px;
  font-size: var(--text-caption);
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.program-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.program-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================
   Format Section
   ============================================ */
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
}

.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.format-card-recommended {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.format-recommend-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: var(--text-caption);
  font-weight: 700;
  white-space: nowrap;
}

.format-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 12px;
  color: var(--primary);
  margin-bottom: 20px;
}

.format-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.format-card > p {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.format-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.format-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.format-features li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   Impact Section
   ============================================ */
.impact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.impact-text h3 {
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}

.impact-text > p {
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.impact-metric {
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  text-align: center;
}

.impact-metric .counter {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.impact-metric-label {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* Impact Visual - Report Mock */
.impact-visual {
  position: relative;
}

.report-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.report-header {
  padding: 20px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.report-header svg {
  flex-shrink: 0;
}

.report-body {
  padding: 24px;
}

.report-chart {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 20px;
  height: 160px;
}

.report-bar {
  flex: 1;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.6s ease-out;
}

.report-bar:nth-child(1) { opacity: 0.3; }
.report-bar:nth-child(2) { opacity: 0.45; }
.report-bar:nth-child(3) { opacity: 0.6; }
.report-bar:nth-child(4) { opacity: 0.75; }
.report-bar:nth-child(5) { opacity: 0.9; }
.report-bar:nth-child(6) { opacity: 1; }

.report-bar-label {
  position: absolute;
  bottom: -24px;
  text-align: center;
  width: 100%;
  font-size: var(--text-caption);
  color: var(--text-muted);
}

.report-bar-value {
  position: absolute;
  top: -24px;
  text-align: center;
  width: 100%;
  font-size: var(--text-caption);
  font-weight: 700;
  color: var(--primary);
}

.report-summary {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Voice Section
   ============================================ */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.voice-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.voice-header img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.voice-info {
  display: flex;
  flex-direction: column;
}

.voice-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.voice-company {
  font-size: var(--text-caption);
  color: var(--text-muted);
  margin-top: 2px;
}

.voice-program {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.voice-program-name {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--primary);
}

.voice-program-count {
  font-size: var(--text-small);
  color: var(--accent);
  font-weight: 600;
}

.voice-quote {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.8;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-note-top {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--text-body);
  color: var(--text-muted);
  margin-bottom: var(--space-group);
  line-height: 1.8;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(180, 83, 9, 0.12);
}

.pricing-popular {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
  font-size: var(--text-caption);
  font-weight: 700;
}

.pricing-header {
  padding: 28px 28px 0;
}

.pricing-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.pricing-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 8px;
}

.pricing-price-sub {
  font-size: var(--text-small);
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-desc {
  font-size: var(--text-small);
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.7;
}

.pricing-body {
  padding: 24px 28px 28px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.pricing-features li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: var(--text-small);
  color: var(--accent);
  font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(30, 58, 95, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: var(--text-body);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   Contact / CTA Section
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: start;
}

.contact-text {
  color: #fff;
}

.contact-text h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-h2);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact-text > p {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-checks li svg {
  color: #B45309;
  flex-shrink: 0;
}

.contact-tel {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tel-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.tel-link svg {
  flex-shrink: 0;
}

.contact-tel span {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.5);
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form-card h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--text-h3);
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #111827;
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: #F9FAFB;
  color: #6B7280;
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.footer-logo svg {
  color: var(--primary);
}

.footer-links-group h4 {
  font-size: var(--text-small);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links-group a {
  display: block;
  font-size: var(--text-small);
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-links-group a:hover {
  color: var(--primary);
}

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

.footer-bottom p {
  font-size: var(--text-caption);
  color: #6B7280;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: var(--text-caption);
  color: #6B7280;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
  background: var(--primary-dark);
}

/* ============================================
   Responsive
   ============================================ */

/* --- Tablet landscape --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-form-card {
    max-width: 500px;
  }

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

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

  .impact-visual {
    max-width: 500px;
  }
}

/* --- Tablet portrait --- */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-text h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-badges {
    flex-wrap: wrap;
  }

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

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

  .format-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .format-recommend-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: inline-block;
    margin-bottom: 16px;
  }

  .voice-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .impact-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .form-row {
    flex-direction: row;
  }

  .report-chart {
    height: 120px;
  }
}

/* --- Mobile --- */
@media (max-width: 480px) {
  .challenges-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-form-card {
    padding: 24px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .hero-badges {
    gap: 8px;
  }

  .badge {
    padding: 6px 12px;
    font-size: var(--text-caption);
  }

  .impact-metrics {
    grid-template-columns: 1fr;
  }

  .challenge-card {
    padding: 20px;
  }

  .voice-card {
    padding: 20px;
  }

  .pricing-header {
    padding: 24px 20px 0;
  }

  .pricing-body {
    padding: 20px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 20px 16px;
    font-size: var(--text-small);
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}
