﻿:root {
  --th-bg-main: #0d1929;
  --th-bg-section: #0f1c2f;
  --th-bg-card: #142235;
  --th-bg-card-2: #1a2942;
  --th-bg-soft: #1e2d4a;
  --th-bg-elevated: #243553;

  --th-primary: #5577e6;
  --th-primary-bright: #7090f0;
  --th-primary-dark: #3b56b8;

  --th-accent: #ff8c42;
  --th-accent-bright: #ffa066;
  --th-accent-dark: #e6722a;

  --th-text: #e8eef5;
  --th-text-strong: #ffffff;
  --th-text-sub: #a8b5c6;
  --th-text-mute: #7a8a9e;

  --th-border: rgba(255, 255, 255, 0.08);
  --th-border-strong: rgba(255, 255, 255, 0.14);

  --th-success: #5fb98c;
  --th-success-bg: rgba(95, 185, 140, 0.12);
  --th-success-border: rgba(95, 185, 140, 0.35);
  --th-danger: #d97a82;
  --th-danger-bg: rgba(217, 122, 130, 0.12);
  --th-danger-border: rgba(217, 122, 130, 0.35);
}

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

body { background: var(--th-bg-main); color: var(--th-text); padding-top: 72px; }
.th-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* =================================================================
   ãƒ˜ãƒƒãƒ€ãƒ¼ãƒŠãƒ“ã‚²ãƒ¼ã‚·ãƒ§ãƒ³
   ================================================================= */
.th-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(13, 25, 41, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.th-header.th-header-scrolled { background: rgba(13, 25, 41, 0.92); border-bottom-color: var(--th-border); box-shadow: 0 4px 20px rgba(0,0,0,0.30); }
.th-header-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

/* ロゴ */
.th-header-logo { display: flex; align-items: center; text-decoration: none; color: var(--th-text-strong); flex-shrink: 0; }
.th-header-logo-img { height: 32px; width: auto; }
.th-header-logo-mark { width: 32px; height: 24px; }
.th-header-logo-text { font-size: 18px; font-weight: 600; letter-spacing: 0.04em; }
.th-header-logo-text strong { font-weight: 900; }

/* ãƒŠãƒ“ã‚²ãƒ¼ã‚·ãƒ§ãƒ³ */
.th-header-nav { flex-grow: 1; display: flex; justify-content: center; }
.th-header-nav-desktop { flex-grow: 1; display: flex; justify-content: center; }
.th-header-nav-mobile { display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; z-index: 1000; background: #0d1929; padding: 24px; overflow-y: auto; transform: translateX(100%); transition: transform 0.3s ease; }
.th-header-nav-mobile.th-header-nav-open { display: block; transform: translateX(0); }
.th-header-menu { display: flex; list-style: none; padding: 0; margin: 0; gap: 4px; }
.th-header-item { position: relative; }
.th-header-link { display: inline-flex; align-items: center; gap: 4px; padding: 10px 16px; color: var(--th-text); text-decoration: none; font-size: 14.5px; font-weight: 700; border-radius: 8px; transition: color 0.2s ease, background 0.2s ease; white-space: nowrap; }
.th-header-link:hover { color: var(--th-primary-bright); background: rgba(85,119,230,0.08); }
.th-header-chevron { width: 14px; height: 14px; transition: transform 0.25s ease; opacity: 0.7; }
.th-header-item-dropdown:hover .th-header-chevron { transform: rotate(180deg); }

/* ãƒ‰ãƒ­ãƒƒãƒ—ãƒ€ã‚¦ãƒ³ï¼ˆã‚µãƒ–ãƒ¡ãƒ‹ãƒ¥ãƒ¼ï¼‰ */
.th-header-submenu { position: absolute; top: calc(100% + 4px); left: 50%; transform: translateX(-50%) translateY(-8px); min-width: 280px; padding: 12px; background: rgba(20, 34, 53, 0.98); backdrop-filter: blur(16px); border: 1px solid var(--th-border-strong); border-radius: 14px; box-shadow: 0 18px 50px rgba(0,0,0,0.40); list-style: none; margin: 0; opacity: 0; visibility: hidden; transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; }
.th-header-item-dropdown:hover .th-header-submenu, .th-header-item-dropdown:focus-within .th-header-submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.th-header-submenu li { margin: 0; }
.th-header-submenu a { display: block; padding: 12px 16px; border-radius: 10px; color: var(--th-text); text-decoration: none; transition: background 0.2s ease; }
.th-header-submenu a:hover { background: rgba(85,119,230,0.14); }
.th-submenu-title { display: block; font-size: 14px; font-weight: 800; color: var(--th-text-strong); margin-bottom: 3px; }
.th-submenu-desc { display: block; font-size: 12px; color: var(--th-text-sub); }

/* å³å´ã‚¢ã‚¯ã‚·ãƒ§ãƒ³ */
.th-header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.th-header-cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; background: linear-gradient(135deg, var(--th-accent) 0%, var(--th-accent-dark) 100%); color: #ffffff; text-decoration: none; font-size: 14px; font-weight: 800; border-radius: 999px; box-shadow: 0 6px 18px rgba(255,140,66,0.40); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.th-header-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,140,66,0.55); }
.th-header-cta svg { width: 16px; height: 16px; }
.th-header-user { display: inline-flex; align-items: center; gap: 6px; padding: 0 14px; height: 40px; color: var(--th-text); background: rgba(255,255,255,0.06); border: 1px solid var(--th-border-strong); border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 700; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
.th-header-user:hover { background: rgba(85,119,230,0.20); border-color: rgba(85,119,230,0.55); color: var(--th-primary-bright); }
.th-header-user svg { width: 16px; height: 16px; }
.th-header-user-label { white-space: nowrap; }

/* ãƒãƒ³ãƒãƒ¼ã‚¬ãƒ¼ãƒœã‚¿ãƒ³ï¼ˆãƒ¢ãƒã‚¤ãƒ«ï¼‰ */
.th-header-burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 4px; width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 0; }
.th-header-burger span { display: block; width: 22px; height: 2px; background: var(--th-text-strong); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.th-header-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.th-header-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.th-header-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ãƒ¢ãƒã‚¤ãƒ« */
@media (max-width: 1080px) {
  .th-header-user-label { display: none; }
  .th-header-user { width: 40px; padding: 0; justify-content: center; border-radius: 50%; }
}
@media (max-width: 960px) {
  body { padding-top: 64px; }
  .th-header-inner { height: 64px; padding: 0 16px; }
  .th-header-cta { padding: 9px 16px; font-size: 13px; }
  .th-header-cta span { display: inline; }
  .th-header-actions { margin-left: auto; }
  .th-header-burger { display: flex; margin-left: 12px; }
  .th-header-user { width: 36px; height: 36px; padding: 0; justify-content: center; border-radius: 50%; }
  .th-header-user-label { display: none; }
  .th-header-nav-desktop { display: none; }
  .th-header-nav-mobile { display: block; }
  .th-header-nav-mobile .th-header-menu { flex-direction: column; gap: 4px; }
  .th-header-nav-mobile .th-header-item { width: 100%; }
  .th-header-nav-mobile .th-header-link { padding: 14px 16px; width: 100%; justify-content: space-between; font-size: 16px; border-bottom: 1px solid var(--th-border); border-radius: 0; display: flex; }
  .th-header-nav-mobile .th-header-submenu { position: static !important; transform: none !important; min-width: auto; opacity: 1 !important; visibility: visible !important; padding: 8px 0 8px 16px; margin-top: 0; background: rgba(13, 25, 41, 0.5); backdrop-filter: none; border: none; box-shadow: none; display: none; }
  .th-header-nav-mobile .th-header-item-dropdown.th-header-item-open .th-header-submenu { display: block !important; }
  .th-header-nav-mobile .th-header-item-dropdown.th-header-item-open .th-header-chevron { transform: rotate(180deg); }
  .th-header-nav-mobile .th-header-submenu a { padding: 10px 14px; display: block; }
  .th-header-nav-mobile .th-header-submenu li { list-style: none; }
  .th-header-nav-mobile .th-submenu-title { color: var(--th-text-strong); }
  .th-header-nav-mobile .th-submenu-desc { color: var(--th-text-sub); }
  .th-header-nav-mobile .th-header-item-mobile-cta, .th-header-nav-mobile .th-header-item-mobile-login { display: block; }
}
@media (max-width: 480px) {
  .th-header-logo-img { height: 28px; }
  .th-header-logo-text { font-size: 16px; }
  .th-header-cta { padding: 9px 14px; font-size: 13px; }
}

/* Mobile menu CTA & Login buttons - hidden by default */
.th-header-item-mobile-cta, .th-header-item-mobile-login { display: none; }
.th-header-mobile-cta, .th-header-mobile-login { display: flex; align-items: center; gap: 10px; padding: 14px 16px; width: 100%; font-size: 16px; font-weight: 700; text-decoration: none; border-radius: 0; }
.th-header-mobile-cta { background: linear-gradient(135deg, var(--th-accent) 0%, var(--th-accent-dark) 100%); color: #ffffff; border-radius: 12px; justify-content: center; margin-top: 16px; }
.th-header-mobile-cta svg { width: 18px; height: 18px; }
.th-header-mobile-login { color: var(--th-text); border-bottom: 1px solid var(--th-border); }
.th-header-mobile-login svg { width: 18px; height: 18px; }
.th-header-mobile-login:hover { color: var(--th-primary-bright); background: rgba(85,119,230,0.08); }

@media (max-width: 570px) {
  .th-header-actions { display: none; }
  .th-header-item-mobile-cta, .th-header-item-mobile-login { display: block; }
}
.th-eyebrow { color: var(--th-primary-bright); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; margin: 0 0 12px; }
.th-eyebrow-inner { font-weight: 800; font-size: 12px; letter-spacing: 0.16em; margin: 0 0 8px; }
.th-section-line { width: 60px; height: 3px; margin: 0 auto 20px; background: linear-gradient(90deg, var(--th-primary) 0%, var(--th-primary-bright) 100%); border-radius: 2px; }
.th-section-head { text-align: center; margin-bottom: 48px; }
.th-section-head-compact { margin-bottom: 36px; }
.th-section-head-compact h2 { font-size: 30px; }
.th-section-head h2 { font-size: 38px; font-weight: 800; margin: 0 0 18px; color: var(--th-text-strong); letter-spacing: 0.02em; }
.th-section-desc { font-size: 16px; line-height: 1.9; color: var(--th-text-sub); margin: 0 auto; max-width: 760px; }

/* ===== ãƒ’ãƒ¼ãƒ­ãƒ¼ ===== */
.th-hero { position: relative; padding: 80px 0 80px; overflow: hidden; background: linear-gradient(180deg, #0a1424 0%, #0d1929 100%); }
.th-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.th-hero-bg-glow { position: absolute; border-radius: 50%; filter: blur(80px); }
.th-hero-bg-glow-1 { top: -10%; left: -10%; width: 560px; height: 560px; background: radial-gradient(circle, rgba(85,119,230,0.35) 0%, transparent 70%); }
.th-hero-bg-glow-2 { bottom: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(85,119,230,0.22) 0%, transparent 70%); }
.th-hero-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(85,119,230,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(85,119,230,0.04) 1px, transparent 1px); background-size: 40px 40px; opacity: 0.6; }

.th-hero-inner { text-align: center; max-width: 940px; margin: 0 auto; }
.th-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(85,119,230,0.12); border: 1px solid rgba(85,119,230,0.35); border-radius: 999px; color: #b8c9ee; font-size: 13px; font-weight: 700; margin-bottom: 28px; }
.th-hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--th-primary-bright); box-shadow: 0 0 12px var(--th-primary-bright); }
.th-hero-title { font-size: 56px; font-weight: 900; line-height: 1.3; margin: 0 0 28px; color: var(--th-text-strong); letter-spacing: 0.02em; }
.th-hero-title-accent { background: linear-gradient(135deg, var(--th-primary-bright) 0%, #a0b8ff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.th-hero-subtitle { font-size: 18px; line-height: 1.95; color: var(--th-text-sub); margin: 0 auto 36px; max-width: 720px; }

.th-hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.th-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 32px; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 16px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.th-btn svg { width: 18px; height: 18px; }
.th-btn-primary { background: linear-gradient(135deg, var(--th-accent) 0%, var(--th-accent-dark) 100%); color: #ffffff; box-shadow: 0 12px 30px rgba(255,140,66,0.40); }
.th-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(255,140,66,0.55); }
.th-btn-secondary { background: rgba(255,255,255,0.10); color: #ffffff; border: 1.5px solid rgba(255,255,255,0.30); backdrop-filter: blur(6px); }
.th-btn-secondary:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.th-hero-cta-note { color: var(--th-text-mute); font-size: 13px; margin: 0 0 50px; }

.th-hero-trust { display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap; gap: 0; background: rgba(255,255,255,0.04); border: 1px solid var(--th-border-strong); border-radius: 18px; padding: 22px 24px; backdrop-filter: blur(8px); }
.th-hero-trust-item { padding: 8px 24px; text-align: center; flex: 1; min-width: 140px; display: flex; flex-direction: column; justify-content: center; }
.th-hero-trust-num { font-size: 36px; font-weight: 800; color: var(--th-text-strong); line-height: 1; margin-bottom: 6px; background: linear-gradient(180deg, #ffffff 0%, #c8d4e8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.th-hero-trust-num span { font-size: 24px; margin-left: 2px; }
.th-hero-trust-num-unit { font-size: 18px; margin-left: 4px; font-weight: 700; }
.th-hero-trust-label { font-size: 12px; color: var(--th-text-sub); font-weight: 600; letter-spacing: 0.04em; line-height: 1.5; }
.th-hero-trust-label small { font-size: 10.5px; color: var(--th-text-mute); display: block; margin-top: 2px; }
.th-hero-trust-divider { width: 1px; background: rgba(255,255,255,0.14); align-self: stretch; }

/* ===== ã‚¯ã‚¤ãƒƒã‚¯ãƒãƒªãƒ¥ãƒ¼ ===== */
.th-quickvalue { padding: 70px 0; background: var(--th-bg-main); }
.th-quickvalue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.th-quickvalue-card { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-radius: 16px; padding: 32px 28px; text-align: center; transition: transform 0.25s ease, border-color 0.25s ease; }
.th-quickvalue-card:hover { transform: translateY(-3px); border-color: rgba(85,119,230,0.40); }
.th-quickvalue-icon { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--th-primary-bright); background: rgba(85,119,230,0.12); border: 1px solid rgba(85,119,230,0.25); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.th-quickvalue-icon svg { width: 26px; height: 26px; }
.th-quickvalue-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 12px; color: var(--th-text-strong); }
.th-quickvalue-card p { margin: 0; font-size: 14.5px; line-height: 1.85; color: var(--th-text-sub); }

/* ===== èª²é¡Œæèµ· ===== */
.th-pain { padding: 90px 0; background: var(--th-bg-section); }
.th-pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 960px; margin: 0 auto 36px; }
.th-pain-card { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-radius: 16px; padding: 28px 30px; display: flex; gap: 18px; align-items: flex-start; }
.th-pain-icon { width: 44px; height: 44px; flex-shrink: 0; color: var(--th-accent); background: rgba(255,140,66,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.th-pain-icon svg { width: 22px; height: 22px; }
.th-pain-card h3 { font-size: 17px; font-weight: 800; margin: 4px 0 8px; color: var(--th-text-strong); }
.th-pain-card p { margin: 0; font-size: 14px; line-height: 1.8; color: var(--th-text-sub); }
.th-pain-bridge { text-align: center; font-size: 18px; line-height: 1.8; color: var(--th-text); margin: 0 auto; padding: 24px 32px; background: rgba(85,119,230,0.08); border: 1px solid rgba(85,119,230,0.25); border-radius: 14px; max-width: 760px; }
.th-pain-bridge strong { color: var(--th-primary-bright); font-weight: 800; }

/* ===== About ===== */
.th-about { padding: 90px 0; background: var(--th-bg-main); }
.th-about-card { max-width: 900px; margin: 0 auto; background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-left: 4px solid var(--th-primary); border-radius: 16px; padding: 40px 44px; }
.th-about-lead { font-size: 20px; line-height: 1.85; margin: 0 0 18px; color: var(--th-text-strong); font-weight: 500; }
.th-about-lead strong { color: var(--th-primary-bright); font-weight: 800; }
.th-about-body { margin: 0 0 20px; font-size: 15.5px; line-height: 1.95; color: var(--th-text-sub); }
.th-about-body strong { color: var(--th-text); font-weight: 700; }
.th-about-note { margin: 0; font-size: 12.5px; line-height: 1.85; color: var(--th-text-mute); border-top: 1px solid var(--th-border); padding-top: 16px; }
.th-about-note a { color: var(--th-primary-bright); text-decoration: underline; }

/* ===== ç‰¹é•· ===== */
.th-features { padding: 90px 0; background: var(--th-bg-section); }
.th-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.th-feature-card { position: relative; background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-radius: 18px; padding: 36px 34px; overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease; }
.th-feature-card:hover { transform: translateY(-4px); border-color: rgba(85,119,230,0.40); }
.th-feature-num { position: absolute; top: 16px; right: 24px; font-size: 80px; font-weight: 900; line-height: 1; color: rgba(85,119,230,0.10); letter-spacing: -0.02em; }
.th-feature-icon { width: 50px; height: 50px; color: var(--th-primary-bright); background: rgba(85,119,230,0.12); border: 1px solid rgba(85,119,230,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; position: relative; z-index: 1; }
.th-feature-icon svg { width: 24px; height: 24px; }
.th-feature-card h3 { font-size: 22px; font-weight: 800; margin: 0 0 12px; color: var(--th-text-strong); position: relative; z-index: 1; }
.th-feature-card > p { margin: 0 0 18px; font-size: 15px; line-height: 1.9; color: var(--th-text-sub); position: relative; z-index: 1; }
.th-feature-card > p strong { color: var(--th-text); font-weight: 700; }
.th-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
.th-feature-list li { background: rgba(85,119,230,0.10); border: 1px solid rgba(85,119,230,0.25); color: #b8c9ee; padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }

/* ===== Use Cases ===== */
.th-usecase { padding: 90px 0; background: var(--th-bg-main); }
.th-usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.th-usecase-card { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-radius: 16px; padding: 28px 24px; transition: transform 0.25s ease, border-color 0.25s ease; }
.th-usecase-card:hover { transform: translateY(-3px); border-color: rgba(85,119,230,0.40); }
.th-usecase-icon { width: 44px; height: 44px; color: var(--th-primary-bright); background: rgba(85,119,230,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.th-usecase-icon svg { width: 22px; height: 22px; }
.th-usecase-tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.10em; padding: 4px 10px; background: rgba(85,119,230,0.15); color: var(--th-primary-bright); border-radius: 999px; margin-bottom: 12px; }
.th-usecase-card h3 { font-size: 18px; font-weight: 800; margin: 0 0 14px; color: var(--th-text-strong); }
.th-usecase-card ul { padding-left: 1.2em; margin: 0; line-height: 1.9; font-size: 13.5px; color: var(--th-text-sub); }
.th-usecase-card ul li::marker { color: var(--th-primary-bright); }

/* ===== å°Žå…¥å®Ÿç¸¾ï¼ˆçµ±åˆç‰ˆï¼‰ ===== */
.th-achievement { position: relative; padding: 90px 0; background: var(--th-bg-section); overflow: hidden; }
.th-achievement-glow { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: 0; }
.th-achievement-glow-1 { top: 5%; left: -8%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(85,119,230,0.28) 0%, transparent 70%); }
.th-achievement-glow-2 { bottom: 10%; right: -10%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(85,119,230,0.20) 0%, transparent 70%); }
.th-achievement-date { display: inline-block; margin-top: 10px; font-size: 13px; color: var(--th-text-mute); }

.th-achievement-kpi { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 56px; }
.th-achievement-kpi-card { position: relative; background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border-radius: 16px; padding: 32px 18px 26px; text-align: center; border: 1px solid var(--th-border); box-shadow: 0 12px 30px rgba(0,0,0,0.25); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.th-achievement-kpi-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--th-primary) 0%, var(--th-primary-bright) 100%); }
.th-achievement-kpi-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(85,119,230,0.18); border-color: rgba(85,119,230,0.40); }
.th-achievement-kpi-icon { width: 46px; height: 46px; margin: 4px auto 16px; color: var(--th-primary-bright); background: rgba(85,119,230,0.12); border: 1px solid rgba(85,119,230,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.th-achievement-kpi-icon svg { width: 22px; height: 22px; }
.th-achievement-kpi-num { font-size: 44px; font-weight: 800; line-height: 1.1; margin-bottom: 10px; letter-spacing: -0.02em; background: linear-gradient(180deg, #ffffff 0%, #c8d4e8 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.th-achievement-kpi-plus { font-size: 30px; margin-left: 2px; font-weight: 700; }
.th-achievement-kpi-suffix { font-size: 22px; margin-left: 4px; font-weight: 700; }
.th-achievement-kpi-label { font-size: 15px; color: var(--th-text); font-weight: 700; margin-bottom: 6px; }
.th-achievement-kpi-sub { font-size: 12px; color: var(--th-text-mute); line-height: 1.6; }

.th-achievement-coverage { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border-radius: 18px; padding: 32px 36px; margin-bottom: 50px; border: 1px solid var(--th-border); }
.th-achievement-coverage-head { text-align: center; margin-bottom: 22px; }
.th-achievement-coverage-head h3 { font-size: 22px; margin: 0; color: var(--th-text-strong); }
.th-achievement-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.th-tag { display: inline-block; padding: 9px 18px; background: rgba(85,119,230,0.10); color: #b8c9ee; border: 1px solid rgba(85,119,230,0.30); border-radius: 999px; font-size: 14px; font-weight: 700; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.th-tag:hover { background: rgba(85,119,230,0.22); border-color: rgba(85,119,230,0.55); color: #ffffff; transform: translateY(-1px); }

.th-achievement-block { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border-radius: 18px; padding: 36px; margin-bottom: 28px; border: 1px solid var(--th-border); box-shadow: 0 12px 30px rgba(0,0,0,0.22); }
.th-achievement-block-head { margin-bottom: 24px; }
.th-achievement-block-eyebrow { display: inline-block; color: var(--th-primary-bright); font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.th-achievement-block-head h3 { font-size: 26px; margin: 0 0 12px; color: var(--th-text-strong); }
.th-achievement-block-head p { margin: 0; line-height: 1.9; color: var(--th-text-sub); font-size: 15px; }
.th-achievement-companies { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.th-achievement-company { position: relative; background: var(--th-bg-soft); border: 1px solid var(--th-border-strong); border-radius: 12px; padding: 16px 18px; font-size: 14.5px; font-weight: 700; color: var(--th-text); transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.th-achievement-company:hover { background: var(--th-bg-elevated); border-color: rgba(85,119,230,0.45); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(85,119,230,0.18); }
.th-achievement-company-highlight { background: linear-gradient(135deg, rgba(220, 175, 80, 0.20) 0%, rgba(220, 175, 80, 0.08) 100%); border: 1px solid rgba(220, 175, 80, 0.55); color: var(--th-text-strong); box-shadow: 0 6px 20px rgba(220, 175, 80, 0.12); }
.th-achievement-company-highlight:hover { background: linear-gradient(135deg, rgba(220, 175, 80, 0.30) 0%, rgba(220, 175, 80, 0.14) 100%); border-color: rgba(220, 175, 80, 0.80); box-shadow: 0 10px 26px rgba(220, 175, 80, 0.22); }
.th-achievement-badge { display: inline-block; background: linear-gradient(135deg, #e0b048 0%, #c98c1a 100%); color: #ffffff; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; padding: 3px 8px; border-radius: 999px; margin-right: 8px; vertical-align: middle; box-shadow: 0 2px 8px rgba(201, 140, 26, 0.45); }
.th-achievement-note { margin: 16px 0 0; font-size: 13px; color: var(--th-text-mute); line-height: 1.7; }

.th-achievement-outcome { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border-radius: 20px; padding: 40px 36px; margin-top: 28px; border: 1px solid var(--th-border); }
.th-achievement-outcome-head { text-align: center; margin-bottom: 32px; }
.th-achievement-outcome-head h3 { font-size: 26px; margin: 0 0 14px; color: var(--th-text-strong); }
.th-achievement-outcome-head p { margin: 0; line-height: 1.9; color: var(--th-text-sub); font-size: 15px; }
.th-achievement-outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.th-outcome-card { background: var(--th-bg-soft); border-radius: 14px; padding: 22px 20px; border: 1px solid var(--th-border-strong); display: flex; flex-direction: column; align-items: center; }
.th-outcome-row { width: 100%; border-radius: 10px; padding: 14px 16px; text-align: center; }
.th-outcome-before { background: var(--th-danger-bg); border: 1px solid var(--th-danger-border); }
.th-outcome-after { background: var(--th-success-bg); border: 1px solid var(--th-success-border); }
.th-outcome-label { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; padding: 3px 9px; border-radius: 999px; margin-bottom: 6px; }
.th-outcome-before .th-outcome-label { background: var(--th-danger); color: #ffffff; }
.th-outcome-after .th-outcome-label { background: var(--th-success); color: #ffffff; }
.th-outcome-row p { margin: 0; font-size: 13.5px; font-weight: 700; color: var(--th-text); line-height: 1.55; }
.th-outcome-arrow { color: var(--th-primary-bright); margin: 8px 0; }
.th-outcome-arrow svg { width: 20px; height: 20px; }

/* ===== æ–™é‡‘ãƒ—ãƒ©ãƒ³ ===== */
.th-pricing { padding: 90px 0; background: var(--th-bg-main); }
.th-pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 980px; margin: 0 auto 50px; }
.th-pricing-card { position: relative; background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-radius: 20px; padding: 38px 36px; display: flex; flex-direction: column; transition: transform 0.25s ease; }
.th-pricing-card:hover { transform: translateY(-4px); }
.th-pricing-card-recommended { border: 2px solid var(--th-primary); box-shadow: 0 18px 50px rgba(85,119,230,0.30); }
/* .th-pricing-card-recommended::before { content: ""; position: absolute; top: -2px; left: -2px; right: -2px; height: 6px; background: linear-gradient(90deg, var(--th-primary) 0%, var(--th-primary-bright) 100%); border-radius: 20px 20px 0 0; } */
.th-pricing-card-recommend-badge { position: absolute; top: -14px; right: 28px; background: linear-gradient(135deg, var(--th-primary) 0%, var(--th-primary-bright) 100%); color: #ffffff; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; padding: 6px 16px; border-radius: 999px; box-shadow: 0 6px 16px rgba(85,119,230,0.45); }
.th-pricing-card-header { margin-bottom: 22px; }
.th-pricing-card-name { font-size: 24px; font-weight: 800; color: var(--th-text-strong); margin-bottom: 6px; }
.th-pricing-card-tagline { font-size: 13.5px; color: var(--th-text-sub); }
.th-pricing-card-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.th-pricing-card-price-num { font-size: 56px; font-weight: 900; line-height: 1; color: var(--th-text-strong); letter-spacing: -0.02em; background: linear-gradient(180deg, #ffffff 0%, var(--th-primary-bright) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.th-pricing-card-price-unit { font-size: 20px; font-weight: 700; color: var(--th-text); }
.th-pricing-card-price-unit small { font-size: 13px; color: var(--th-text-sub); font-weight: 600; margin-left: 4px; }
.th-pricing-card-year { font-size: 12.5px; color: var(--th-text-mute); margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--th-border); }
.th-pricing-card-desc { font-size: 14px; line-height: 1.85; color: var(--th-text-sub); margin: 0 0 22px; }
.th-pricing-card-features { list-style: none; padding: 0; margin: 0 0 28px; flex-grow: 1; }
.th-pricing-card-features li { position: relative; padding-left: 26px; padding-bottom: 12px; font-size: 14.5px; color: var(--th-text); }
.th-pricing-card-features li::before { content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237090f0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: contain; }
.th-pricing-card-features li strong { color: var(--th-primary-bright); font-weight: 800; }
.th-pricing-card-btn { display: block; padding: 16px 28px; border-radius: 999px; text-decoration: none; font-weight: 800; font-size: 15.5px; text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.th-pricing-card-btn-primary { background: linear-gradient(135deg, var(--th-primary) 0%, var(--th-primary-bright) 100%); color: #ffffff; box-shadow: 0 10px 24px rgba(85,119,230,0.40); }
.th-pricing-card-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(85,119,230,0.55); }
.th-pricing-card-btn-secondary { background: rgba(255,255,255,0.08); color: var(--th-text-strong); border: 1.5px solid rgba(255,255,255,0.30); }
.th-pricing-card-btn-secondary:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.th-pricing-table-wrap { max-width: 900px; margin: 0 auto; }
.th-pricing-table-title { font-size: 20px; font-weight: 800; color: var(--th-text-strong); margin: 0 0 18px; text-align: center; }
.th-pricing-table { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-radius: 14px; overflow: hidden; }
.th-pricing-table table { width: 100%; border-collapse: collapse; }
.th-pricing-table th, .th-pricing-table td { padding: 14px 16px; text-align: left; font-size: 14px; }
.th-pricing-table th { background: linear-gradient(135deg, var(--th-primary-dark) 0%, var(--th-primary) 100%); color: #ffffff; font-weight: 800; font-size: 14px; }
.th-pricing-table th:nth-child(2), .th-pricing-table th:nth-child(3) { text-align: center; width: 110px; }
.th-pricing-table td:nth-child(2), .th-pricing-table td:nth-child(3) { text-align: center; font-weight: 700; color: var(--th-primary-bright); font-size: 16px; width: 110px; }
.th-pricing-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.th-pricing-table tr td { border-top: 1px solid var(--th-border); color: var(--th-text); }
.th-pricing-table-note { margin: 14px 0 0; font-size: 12.5px; line-height: 1.8; color: var(--th-text-mute); }

/* ===== Trial ===== */
.th-trial { position: relative; padding: 90px 0; overflow: hidden; }
.th-trial-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1a2942 0%, #243553 50%, #1a2942 100%); z-index: 0; }
.th-trial-bg::before { content: ""; position: absolute; top: -100px; left: -100px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,140,66,0.30) 0%, transparent 70%); filter: blur(40px); }
.th-trial-bg::after { content: ""; position: absolute; bottom: -100px; right: -100px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(85,119,230,0.30) 0%, transparent 70%); filter: blur(40px); }
.th-trial-inner { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; padding: 48px 40px; background: rgba(13,25,41,0.6); border: 1px solid var(--th-border-strong); border-radius: 24px; backdrop-filter: blur(10px); }
.th-trial-eyebrow { color: var(--th-accent-bright); font-weight: 800; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 12px; }
.th-trial-inner h2 { font-size: 38px; font-weight: 900; margin: 0 0 18px; color: var(--th-text-strong); letter-spacing: 0.02em; }
.th-trial-highlight { background: linear-gradient(135deg, var(--th-accent) 0%, var(--th-accent-bright) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.th-trial-desc { font-size: 15.5px; line-height: 1.95; color: var(--th-text-sub); margin: 0 auto 28px; }
.th-trial-features { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.th-trial-feature { display: inline-flex; align-items: center; gap: 8px; color: var(--th-text); font-size: 14.5px; font-weight: 700; }
.th-trial-feature svg { width: 20px; height: 20px; color: var(--th-success); flex-shrink: 0; }
.th-trial-btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 22px 50px; background: linear-gradient(135deg, var(--th-accent) 0%, var(--th-accent-dark) 100%); color: #ffffff; border-radius: 999px; text-decoration: none; font-weight: 900; font-size: 18px; box-shadow: 0 14px 36px rgba(255,140,66,0.45); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.th-trial-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(255,140,66,0.55); }
.th-trial-btn svg { width: 22px; height: 22px; }

/* ===== Target ===== */
.th-target { padding: 90px 0; background: var(--th-bg-main); }
.th-target-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.th-target-card { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-radius: 18px; padding: 34px 30px; transition: transform 0.25s ease, border-color 0.25s ease; }
.th-target-card:hover { transform: translateY(-3px); border-color: rgba(85,119,230,0.40); }
.th-target-icon { width: 50px; height: 50px; color: var(--th-primary-bright); background: rgba(85,119,230,0.12); border: 1px solid rgba(85,119,230,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.th-target-icon svg { width: 24px; height: 24px; }
.th-target-tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.10em; padding: 4px 10px; background: rgba(85,119,230,0.15); color: var(--th-primary-bright); border-radius: 999px; margin-bottom: 12px; }
.th-target-card h3 { font-size: 21px; font-weight: 800; margin: 0 0 14px; color: var(--th-text-strong); }
.th-target-card p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.85; color: var(--th-text-sub); }
.th-target-card ul { padding-left: 1.2em; margin: 0; line-height: 1.9; font-size: 14px; color: var(--th-text-sub); }
.th-target-card ul li::marker { color: var(--th-primary-bright); }

/* ===== Learning ===== */
.th-learning { padding: 90px 0; background: var(--th-bg-section); }
.th-learning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.th-learning-card { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-radius: 18px; padding: 32px 28px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.th-learning-card:hover { transform: translateY(-4px); border-color: rgba(85,119,230,0.50); box-shadow: 0 14px 36px rgba(85,119,230,0.18); }
.th-learning-icon { width: 50px; height: 50px; color: var(--th-primary-bright); background: rgba(85,119,230,0.12); border: 1px solid rgba(85,119,230,0.25); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.th-learning-icon svg { width: 24px; height: 24px; }
.th-learning-card h3 { font-size: 19px; font-weight: 800; margin: 0 0 10px; color: var(--th-text-strong); }
.th-learning-card p { margin: 0 0 22px; font-size: 14px; line-height: 1.85; color: var(--th-text-sub); flex-grow: 1; }
.th-learning-link { display: inline-flex; align-items: center; gap: 6px; color: var(--th-primary-bright); font-weight: 800; font-size: 14px; }
.th-learning-link svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.th-learning-card:hover .th-learning-link svg { transform: translateX(4px); }

/* ===== FAQ ===== */
.th-faq { padding: 90px 0; background: var(--th-bg-main); }
.th-faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.th-faq-item { background: linear-gradient(180deg, var(--th-bg-card) 0%, var(--th-bg-card-2) 100%); border: 1px solid var(--th-border); border-radius: 14px; overflow: hidden; transition: border-color 0.25s ease; }
.th-faq-item[open] { border-color: rgba(85,119,230,0.40); }
.th-faq-item summary { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; list-style: none; font-weight: 700; color: var(--th-text-strong); font-size: 15.5px; transition: background 0.2s ease; }
.th-faq-item summary::-webkit-details-marker { display: none; }
.th-faq-item summary:hover { background: rgba(85,119,230,0.04); }
.th-faq-q-icon { flex-shrink: 0; width: 32px; height: 32px; background: rgba(85,119,230,0.18); color: var(--th-primary-bright); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; }
.th-faq-q-text { flex-grow: 1; line-height: 1.6; }
.th-faq-toggle { width: 20px; height: 20px; color: var(--th-text-sub); flex-shrink: 0; transition: transform 0.25s ease; }
.th-faq-item[open] .th-faq-toggle { transform: rotate(180deg); }
.th-faq-a { display: flex; gap: 16px; padding: 0 24px 22px 24px; }
.th-faq-a-icon { flex-shrink: 0; width: 32px; height: 32px; background: rgba(255,140,66,0.18); color: var(--th-accent-bright); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; }
.th-faq-a p { margin: 4px 0 0; line-height: 1.95; color: var(--th-text-sub); font-size: 15px; }
.th-faq-a p strong { color: var(--th-primary-bright); font-weight: 800; }

/* ===== Final CTA ===== */
.th-final-cta { padding: 90px 0 100px; background: var(--th-bg-section); }
.th-final-cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.th-final-cta-card { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 28px 32px; background: linear-gradient(180deg, var(--th-primary) 0%, var(--th-primary-dark) 100%); border-radius: 18px; text-decoration: none; box-shadow: 0 14px 36px rgba(85,119,230,0.30); border: 1px solid rgba(255,255,255,0.10); transition: transform 0.25s ease, box-shadow 0.25s ease; overflow: hidden; }
.th-final-cta-card::before { content: ""; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%); pointer-events: none; }
.th-final-cta-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(85,119,230,0.45); }
.th-final-cta-icon { width: 88px; height: 88px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.th-final-cta-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.20)); }
.th-final-cta-card h3 { font-size: 19px; font-weight: 800; color: #ffffff; margin: 0 0 14px; line-height: 1.5; position: relative; z-index: 1; }
.th-final-cta-card p { margin: 0 0 24px; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.92); flex-grow: 1; position: relative; z-index: 1; }
.th-final-cta-link { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding-top: 18px; width: 100%; border-top: 1px solid rgba(255,255,255,0.30); font-size: 15px; font-weight: 800; color: #ffffff; position: relative; z-index: 1; }
.th-final-cta-link svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.th-final-cta-card:hover .th-final-cta-link svg { transform: translateX(4px); }

/* ===== ãƒ¬ã‚¹ãƒãƒ³ã‚·ãƒ– ===== */
@media (max-width: 960px) {
  .th-hero-title { font-size: 42px; }
  .th-quickvalue-grid, .th-features-grid, .th-target-grid, .th-learning-grid, .th-final-cta-grid, .th-pain-grid { grid-template-columns: 1fr; }
  .th-pricing-grid { grid-template-columns: 1fr; }
  .th-usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .th-achievement-kpi { grid-template-columns: repeat(2, 1fr); }
  .th-achievement-outcome-grid { grid-template-columns: 1fr; }
  .th-hero-trust { flex-direction: column; gap: 16px; }
  .th-hero-trust-divider { width: 80%; height: 1px; }
  .th-section-head h2, .th-trial-inner h2 { font-size: 30px; }
}
@media (max-width: 640px) {
  .th-hero { padding: 70px 0 60px; }
  .th-hero-title { font-size: 32px; }
  .th-hero-subtitle { font-size: 15px; }
  .th-hero-cta { flex-direction: column; }
  .th-btn { width: 100%; }
  .th-quickvalue, .th-pain, .th-about, .th-features, .th-usecase, .th-achievement, .th-pricing, .th-trial, .th-target, .th-learning, .th-faq, .th-final-cta { padding: 60px 0; }
  .th-section-head h2, .th-trial-inner h2 { font-size: 26px; }
  .th-usecase-grid { grid-template-columns: 1fr; }
  .th-achievement-kpi { grid-template-columns: 1fr; }
  .th-about-card { padding: 28px 24px; }
  .th-feature-card { padding: 28px 24px; }
  .th-feature-num { font-size: 56px; }
  .th-pricing-card { padding: 28px 22px; }
  .th-pricing-card-price-num { font-size: 44px; }
  .th-trial-inner { padding: 32px 24px; }
  .th-trial-btn { padding: 18px 32px; font-size: 16px; width: 100%; }
  .th-pain-card { flex-direction: column; gap: 12px; padding: 24px; }
  .th-pricing-table th, .th-pricing-table td { padding: 10px 12px; font-size: 13px; }
  .th-achievement-block { padding: 28px 22px; }
  .th-achievement-outcome { padding: 28px 22px; }
  .th-achievement-coverage { padding: 24px 20px; }
}
/* ===== Footer ===== */
.th-footer { padding: 60px 0 0; background: var(--th-bg-section); border-top: 1px solid var(--th-border); }
.th-footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding-bottom: 40px; }
.th-footer-brand { }
.th-footer-logo { display: inline-block; text-decoration: none; margin-bottom: 16px; }
.th-footer-logo img, .th-footer-logo .th-header-logo-img { height: 28px; width: auto; }
.th-footer-logo-text { font-size: 18px; font-weight: 600; letter-spacing: 0.04em; }
.th-footer-logo-text strong { font-weight: 900; }
.th-footer-desc { font-size: 14px; line-height: 1.8; color: var(--th-text-sub); margin: 0; }
.th-footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.th-footer-col h4 { font-size: 14px; font-weight: 800; color: var(--th-text-strong); margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.08em; }
.th-footer-col ul { list-style: none; padding: 0; margin: 0; }
.th-footer-col li { margin-bottom: 10px; }
.th-footer-col a { color: var(--th-text-sub); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.th-footer-col a:hover { color: var(--th-primary-bright); }
.th-footer-bottom { padding: 24px 0; border-top: 1px solid var(--th-border); text-align: center; }
.th-footer-copyright { margin: 0; font-size: 13px; color: var(--th-text-mute); }

@media (max-width: 960px) {
  .th-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .th-footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .th-footer { padding: 40px 0 0; }
  .th-footer-links { grid-template-columns: 1fr; gap: 24px; }
}