/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary: #1a3a5c;
  --primary-light: #2a5580;
  --primary-dark: #0f2440;
  --accent: #2b7de9;
  --accent-light: #e8f2ff;
  --text: #2d2d2d;
  --text-light: #5a6672;
  --bg: #ffffff;
  --bg-light: #f5f7fa;
  --bg-dark: #1a3a5c;
  --border: #d1d9e0;
  --border-light: #e8ecf0;
  --shadow-sm: 0 2px 8px rgba(26,58,92,0.06);
  --shadow-md: 0 4px 20px rgba(26,58,92,0.1);
  --shadow-lg: 0 8px 40px rgba(26,58,92,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --font-sans: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --max-width: 1100px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--primary-light);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}

/* ============================================
   UTILITY / LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 100px 0;
}
.section.bg-light {
  background: var(--bg-light);
}
.section.bg-dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.section.bg-dark .section-title {
  color: #fff;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.85;
}
.section.bg-dark .section-sub {
  color: rgba(255,255,255,0.8);
}

/* 追加: チェックリストUI */
.check-list {
  max-width: 800px;
  margin: 0 auto 40px;
}
.check-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232b7de9' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}

/* 追加: FAQ UI */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
}
.faq-q {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}
.faq-q span {
  color: var(--accent);
  flex-shrink: 0;
}
.faq-a {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  display: flex;
  gap: 12px;
}
.faq-a span {
  color: #e74c3c;
  font-weight: 700;
  flex-shrink: 0;
}

/* 追加: フォーム案内ボックス */
.form-guide-box {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  padding: 24px 32px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 40px auto 0;
  max-width: 800px;
}
.form-guide-box p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
}
.form-guide-box ul {
  padding-left: 20px;
  list-style: disc;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
}
.btn-large {
  padding: 20px 48px;
  font-size: 1.15rem;
  border-radius: var(--radius-sm);
}
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-group-center {
  justify-content: center;
}
.cta-single-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   NEWS TICKER BAR
   ============================================ */
.ticker-bar {
  background: var(--primary-dark);
  color: #fff;
  height: 40px;
  overflow: hidden;
  position: relative;
  font-size: 0.85rem;
  z-index: 1001;
}
.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  z-index: 2;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  align-items: center;
  height: 40px;
  margin-left: 100px;
  overflow: hidden;
}
.ticker-scroll {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.ticker-item:hover {
  color: #fff;
}
.ticker-date {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  flex-shrink: 0;
}
.ticker-title {
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, top 0.3s;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  top: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.header-logo img {
  height: 36px;
  width: auto;
  cursor: pointer;
}
.header-logo .logo-white {
  display: block;
}
.header-logo .logo-color {
  display: none;
}
.site-header.scrolled .header-logo .logo-white {
  display: none;
}
.site-header.scrolled .header-logo .logo-color {
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.header-nav a:hover {
  color: rgba(255,255,255,0.8);
}
.site-header.scrolled .header-nav a {
  color: var(--text);
}
.site-header.scrolled .header-nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: background 0.3s;
}
.site-header.scrolled .hamburger span {
  background: var(--primary);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26,58,92,0.97);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
.mobile-menu a:hover {
  color: rgba(255,255,255,0.7);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-close svg {
  stroke: #fff;
}

/* ============================================
   MOBILE FIXED CTA
   ============================================ */
.mobile-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  z-index: 999;
  text-align: center;
}
.mobile-fixed-cta .btn {
  width: 100%;
  max-width: 400px;
}

/* ============================================
   HERO (TOP)
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
  padding-top: 112px;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,160L48,170.7C96,181,192,203,288,192C384,181,480,139,576,128C672,117,768,139,864,165.3C960,192,1056,224,1152,218.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-text {
  flex: 1;
  color: #fff;
}
.hero-label {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-image {
  flex: 0 0 320px;
}
.hero-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

/* ============================================
   PAGE HERO (sub pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 140px 0 60px;
  color: #fff;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   PAIN POINTS (TOP)
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pain-icon {
  color: var(--primary);
  margin-bottom: 16px;
}
.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   TOP SERVICES (4 pillars)
   ============================================ */
.top-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.top-service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.top-service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.top-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.top-service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.5;
}
.top-service-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   TOP RESULTS SUMMARY
   ============================================ */
.results-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.result-summary-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
}
.result-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.result-number span {
  font-size: 1.1rem;
  font-weight: 400;
}
.result-summary-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ============================================
   REASONS / FEATURES (TOP)
   ============================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.reason-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.reason-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.reason-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.reason-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   FLOW STEPS
   ============================================ */
.flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}
.flow-step {
  flex: 0 0 200px;
  text-align: center;
  padding: 0 12px;
}
.flow-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.flow-step h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}
.flow-step p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.6;
}
.flow-step-arrow {
  display: flex;
  align-items: center;
  padding-top: 14px;
}

/* ============================================
   PROFILE PREVIEW (TOP)
   ============================================ */
.profile-preview {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}
.profile-preview-image {
  flex: 0 0 260px;
}
.profile-preview-image img {
  width: 260px;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.profile-preview-text {
  flex: 1;
}
.profile-preview-text h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.profile-preview-text p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ============================================
   SERVICE PAGE
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.service-detail-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.service-detail-card:hover {
  box-shadow: var(--shadow-md);
}
.service-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.service-detail-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-detail-card .service-target {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--accent-light);
  border-radius: 4px;
  display: inline-block;
}
.service-detail-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-extra {
  margin-top: 48px;
}
.service-extra-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.service-extra-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-extra-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-main {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 48px;
}
.profile-main-image {
  flex: 0 0 280px;
}
.profile-main-image img {
  width: 280px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.profile-main-text {
  flex: 1;
}
.profile-main-text h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.profile-main-text .profile-name-en {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.profile-main-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}
.profile-career {
  margin-top: 48px;
}
.career-list {
  margin-top: 32px;
}
.career-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.career-year {
  flex-shrink: 0;
  width: 120px;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
.career-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

/* プロフィール写真グリッド */
.profile-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.profile-photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.profile-photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.profile-photo-card p {
  padding: 16px;
  font-size: 0.93rem;
  color: var(--text-light);
  text-align: center;
  background: #fff;
}

/* ============================================
   RESULTS PAGE - CASE STUDIES
   ============================================ */
.case-list {
  margin-top: 48px;
}
.case-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.case-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.case-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.5;
}
.case-section {
  margin-bottom: 20px;
}
.case-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  padding-left: 32px;
}

/* Subsidy stats */
.subsidy-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  justify-content: center;
}
.subsidy-stat {
  text-align: center;
  padding: 32px 40px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.subsidy-stat .stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.subsidy-stat .stat-num span {
  font-size: 1.1rem;
  font-weight: 400;
}
.subsidy-stat .stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  flex-shrink: 0;
  color: var(--primary);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   NOTE / BLOG PAGE
   ============================================ */
.note-intro {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
  margin-bottom: 48px;
}
.note-intro-image {
  flex: 0 0 200px;
}
.note-intro-image img {
  width: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.note-intro-text {
  flex: 1;
}
.note-intro-text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.note-intro-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.note-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
.note-card {
  display: flex;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, transform 0.2s;
}
.note-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--text);
}
.note-card-thumb {
  flex: 0 0 180px;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.note-card-body {
  flex: 1;
  min-width: 0;
}
.note-card-date {
  font-size: 0.85rem;
  color: var(--text-light);
}
.note-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 6px 0 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.note-card-excerpt {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.note-loading {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.contact-theme-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.contact-theme-card:hover {
  box-shadow: var(--shadow-md);
}
.contact-theme-icon {
  color: var(--primary);
  margin-bottom: 16px;
}
.contact-theme-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}
.contact-theme-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}
.notice-box {
  max-width: 800px;
  margin: 40px auto 0;
}
.notice-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius-sm);
}
.notice-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.notice-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}
.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.form-group {
  margin-bottom: 28px;
}
.form-group label {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-required {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.05rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='20' height='20' fill='none' stroke='%23666' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}
.form-agree {
  margin-top: 32px;
  margin-bottom: 32px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400 !important;
  color: var(--text) !important;
}
.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.checkbox-label span {
  font-size: 0.95rem;
  line-height: 1.7;
}
.form-submit {
  text-align: center;
  margin-top: 16px;
}
.form-note {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.form-note p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-note a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================
   FOOTER CTA SECTION
   ============================================ */
.footer-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
}
.footer-cta h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}
.footer-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1;
  min-width: 200px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-decoration: none;
  cursor: pointer;
}
.footer-col a:hover {
  color: #fff;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 960px)
   ============================================ */
@media (max-width: 960px) {
  .header-nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero .btn-group {
    justify-content: center;
  }
  .hero-image {
    flex: none;
  }
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  .profile-preview {
    flex-direction: column;
    text-align: center;
  }
  .profile-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    padding: 36px 28px;
  }
  .subsidy-stats {
    flex-direction: column;
    align-items: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .note-intro {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .flow-step {
    flex: 0 0 160px;
  }
}

/* ============================================
   RESPONSIVE - SMARTPHONE (max-width: 600px)
   ============================================ */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 64px 0;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .hero-image img {
    width: 220px;
    height: 220px;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .top-services-grid {
    grid-template-columns: 1fr;
  }
  .results-summary-grid {
    grid-template-columns: 1fr;
  }
  .result-number {
    font-size: 2rem;
  }
  .case-card {
    padding: 28px 20px;
  }
  .case-section p {
    padding-left: 0;
  }
  .page-hero {
    padding: 110px 0 48px;
  }
  .page-hero h1 {
    font-size: 1.6rem;
  }
  .profile-main-image {
    flex: none;
  }
  .profile-main-image img {
    width: 200px;
  }
  .profile-photos {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    padding: 28px 20px;
    border-radius: var(--radius-md);
  }
  .btn-large {
    width: 100%;
    padding: 16px 24px;
  }
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-group .btn {
    width: 100%;
    text-align: center;
  }
  .note-card {
    flex-direction: column;
  }
  .note-card-thumb {
    flex: none;
    width: 100%;
    height: 180px;
  }
  .flow-steps {
    flex-direction: column;
    align-items: center;
  }
  .flow-step {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin-bottom: 8px;
  }
  .flow-step-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  .mobile-fixed-cta {
    display: block;
  }
  .site-header {
    top: 0;
  }
  .ticker-bar {
    display: none;
  }
  .career-item {
    flex-direction: column;
    gap: 4px;
  }
  .career-year {
    width: auto;
  }
  .service-extra-card {
    flex-direction: column;
  }
  .footer-cta h2 {
    font-size: 1.4rem;
  }
  .check-list li {
    font-size: 0.95rem;
    padding-left: 28px;
  }
  .check-list li::before {
    width: 20px;
    height: 20px;
    top: 2px;
  }
  .faq-item {
    padding: 20px;
  }
  .faq-q {
    font-size: 1rem;
  }
  .faq-a {
    font-size: 0.95rem;
  }
  .form-guide-box {
    padding: 20px;
  }
}

/* ============================================
   PAGE DISPLAY CONTROL
   ============================================ */
