@charset "utf-8";

  :root {
    --orange: #E85C1A;
    --orange-dark: #C44A10;
    --orange-light: #FF7A3D;
    --orange-pale: #FFF3ED;
    --dark: #1A1A1A;
    --dark-2: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --border: #E8E8E8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ===== HEADER ===== */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .logo img {
    height: 36px;
    width: auto;
    display: block;
  }

  /* フッター用ロゴ */
  .logo-footer img {
    height: 32px;
  }

  /* ===== VIDEO MODAL ===== */
  .video-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .video-modal-overlay.open {
    display: flex;
  }

  .video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
  }

  .video-modal-inner video {
    width: 100%;
    display: block;
  }

  .video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
    z-index: 10;
  }

  .video-modal-close:hover { background: rgba(255,255,255,0.3); }

  /* ===== FEATURE CARD WITH VIDEO ===== */
  .feature-video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    cursor: pointer;
  }

  .feature-video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .feature-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: background 0.2s;
  }

  .feature-video-thumb:hover .feature-play-btn {
    background: rgba(232,92,26,0.45);
  }

  .play-icon {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .play-icon svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
    fill: var(--orange);
  }

  .feature-video-thumb:hover .play-icon {
    transform: scale(1.1);
  }

  .feature-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
  }

  .feature-detail-link {
    font-size: 12px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .feature-detail-link:hover { opacity: 0.75; }

  /* ===== HERO VIDEO ===== */
  .hero-video-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    cursor: pointer;
  }

  .hero-video-wrap video {
    width: 100%;
    display: block;
    border-radius: 12px;
  }

  .hero-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: background 0.2s;
    border-radius: 12px;
  }

  .hero-video-wrap:hover .hero-video-play {
    background: rgba(232,92,26,0.3);
  }

  .hero-play-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .hero-play-icon svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    fill: var(--orange);
  }

  .hero-video-wrap:hover .hero-play-icon {
    transform: scale(1.08);
  }

  /* ===== FINAL CTA IMAGES ===== */
  .demo-screenshot {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: block;
  }

  .resource-thumb {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  /* ===== HUBSPOT FORM OVERRIDE ===== */
  .hs-form-frame {
    margin-top: 8px;
  }

  /* HubSpotフォームをLP背景に合わせてオーバーライド */
  .hs-form-frame iframe {
    width: 100% !important;
    border: none !important;
  }

  /* iframeが読み込む前のローディング表示 */
  .hs-form-loading {
    text-align: center;
    padding: 20px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
  }

  /* HubSpotフォーム本体のスタイル上書き（同一ドメイン内注入時） */
  .hs-form-frame .hs-form fieldset {
    max-width: 100% !important;
  }
  .hs-form-frame .hs-input {
    width: 100% !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 6px !important;
    color: white !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
  }
  .hs-form-frame .hs-button {
    background: #E85C1A !important;
    border: none !important;
    border-radius: 4px !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    width: 100% !important;
    cursor: pointer !important;
  }
  .hs-form-frame label {
    color: rgba(255,255,255,0.6) !important;
    font-size: 11px !important;
  }
  .hs-form-frame .hs-error-msgs {
    color: #FF6B6B !important;
    font-size: 11px !important;
  }

  nav { display: flex; gap: 32px; align-items: center; }
  nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--orange); }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .btn-primary {
    background: var(--orange);
    color: white;
  }
  .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232,92,26,0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
  }
  .btn-outline:hover {
    background: var(--orange-pale);
  }

  .btn-white {
    background: white;
    color: var(--orange);
    font-weight: 700;
  }
  .btn-white:hover {
    background: var(--orange-pale);
    transform: translateY(-1px);
  }

  .btn-lg { padding: 16px 40px; font-size: 16px; }
  .btn-sm { padding: 10px 20px; font-size: 13px; }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
    border-bottom: 1px solid var(--border);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(232,92,26,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232,92,26,0.04) 0%, transparent 60%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 60px;
    align-items: center;
  }

  /* サムネイル画像（videoタグの代わり） */
  .hero-video-thumb-img {
    width: 100%;
    display: block;
    border-radius: 12px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,92,26,0.2);
    border: 1px solid rgba(232,92,26,0.4);
    color: var(--orange-light);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--orange-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--orange-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
  }

  .hero-title {
    font-size: clamp(28px, 3.2vw, 46px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 32px;
  }

  .hero-title .accent { color: var(--orange); }

  .hero-sub {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* Hero stats */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 24px;
    max-width: 100%;
    border: 1px solid var(--border);
  }

  .stat-item {
    background: var(--gray-light);
    padding: 24px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
  }

  /* Hero right visual */
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .dashboard-mock {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    animation: floatUp 0.8s ease both;
  }

  @keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mock-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mock-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }

  .mock-title {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-family: 'Inter', sans-serif;
  }

  .mock-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mock-metric {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 12px;
  }

  .mock-metric-label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
  }

  .mock-metric-val {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
  }

  .mock-metric-val.up { color: #4ADE80; }

  .mock-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
  }

  .mock-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: var(--orange);
    animation: fillBar 2s ease both 0.5s;
  }

  @keyframes fillBar {
    from { width: 0; }
  }

  /* ===== SECTION COMMON ===== */
  section { padding: 100px 40px; }

  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
  }

  .section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .section-sub {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 640px;
  }

  /* ===== PAIN SECTION ===== */
  #pain {
    background: var(--gray-light);
  }

  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 56px;
  }

  .pain-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    border-left: 4px solid var(--orange);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .pain-icon {
    width: 44px; height: 44px;
    background: var(--orange-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .pain-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--dark);
  }

  /* ===== SOLUTION SECTION ===== */
  #solution {
    background: white;
  }

  .solution-list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .solution-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--gray-light);
    border-radius: 12px;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
  }

  .solution-item:hover { background: var(--orange-pale); }

  .solution-num {
    width: 48px; height: 48px;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    flex-shrink: 0;
  }

  .solution-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
  }

  .solution-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
  }

  /* ===== FEATURES ===== */
  #features {
    background: var(--gray-light);
    color: var(--dark);
  }

  #features .section-title { color: var(--dark); }
  #features .section-sub { color: var(--gray); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 60px;
  }

  .feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }

  .feature-card:hover {
    background: var(--orange-pale);
    border-color: var(--orange);
    transform: translateY(-4px);
  }

  .feature-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--orange);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
  }

  .feature-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
  }

  .feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }

  .feature-tag {
    display: inline-block;
    margin-top: 16px;
    background: var(--orange-pale);
    color: var(--orange);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
  }

  /* ===== CTA BLOCK ===== */
  .cta-block {
    background: var(--orange-pale);
    border-top: 2px solid rgba(232,92,26,0.2);
    border-bottom: 2px solid rgba(232,92,26,0.2);
    padding: 80px 40px;
  }

  .cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .cta-text h2 {
    font-size: 30px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .cta-text p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .cta-card {
    background: white;
    border: 1px solid rgba(232,92,26,0.3);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(232,92,26,0.08);
  }

  .cta-card:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(232,92,26,0.15);
  }

  .cta-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .cta-card-label {
    font-size: 11px;
    color: var(--orange);
    font-weight: 500;
  }

  .cta-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
  }

  .cta-arrow {
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
  }

  /* ===== CASES ===== */
  #cases {
    background: var(--gray-light);
  }

  .cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 56px;
  }

  .case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }

  .case-header {
    background: var(--orange);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .case-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .case-company {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
  }

  .case-type {
    font-size: 15px;
    font-weight: 700;
    color: white;
  }

  .case-body {
    padding: 24px;
  }

  .case-effects {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .case-effect {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .effect-dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
  }

  .case-effect p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--dark-2);
  }

  /* ===== HOW TO START ===== */
  #howto {
    background: white;
  }

  .howto-tabs {
    display: flex;
    gap: 8px;
    margin-top: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .tab-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid var(--border);
    background: white;
    color: var(--gray);
    transition: all 0.2s;
    font-family: 'Noto Sans JP', sans-serif;
  }

  .tab-btn.active {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-pale);
  }

  .tab-content {
    display: none;
  }

  .tab-content.active { display: block; }

  .howto-steps {
    display: flex;
    gap: 0;
    position: relative;
  }

  .howto-step {
    flex: 1;
    padding: 28px;
    background: var(--gray-light);
    position: relative;
    border-right: 1px solid var(--border);
  }

  .howto-step:last-child { border-right: none; }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--orange);
    margin-bottom: 8px;
    display: block;
  }

  .howto-step h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .howto-step p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
  }

  .coming-box {
    background: var(--orange-pale);
    border: 1px solid rgba(232,92,26,0.2);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
  }

  .coming-box p {
    font-size: 14px;
    color: var(--orange-dark);
    font-weight: 500;
  }

  /* ===== PRICING ===== */
  #pricing {
    background: var(--gray-light);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 56px;
  }

  .plan-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
  }

  .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  }

  .plan-card.featured {
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(232,92,26,0.15);
  }

  .plan-head {
    padding: 28px 24px 20px;
    border-bottom: 1px solid var(--border);
  }

  .plan-card.featured .plan-head {
    background: var(--orange);
  }

  .plan-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
  }

  .plan-card.featured .plan-badge {
    background: rgba(255,255,255,0.25);
  }

  .plan-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .plan-card.featured .plan-name { color: white; }

  .plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--orange);
    line-height: 1;
  }

  .plan-card.featured .plan-price { color: white; }

  .plan-price small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray);
  }

  .plan-card.featured .plan-price small { color: rgba(255,255,255,0.7); }

  .plan-desc {
    font-size: 11px;
    color: var(--gray);
    margin-top: 8px;
    line-height: 1.5;
  }

  .plan-card.featured .plan-desc { color: rgba(255,255,255,0.7); }

  .plan-features {
    padding: 20px 24px 24px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .plan-features li {
    font-size: 12px;
    color: var(--dark-2);
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }

  .plan-features li::before {
    content: '✓';
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .plan-features li.coming {
    color: var(--gray);
    font-style: italic;
  }

  .plan-features li.coming::before {
    content: '◷';
    color: var(--gray);
  }

  .plan-footer {
    padding: 0 24px 24px;
    margin-top: auto;
  }

  .plan-footer .btn { width: 100%; justify-content: center; }

  /* Subsidy box */
  .subsidy-box {
    margin-top: 40px;
    background: white;
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border: 1px solid var(--border);
  }

  .subsidy-icon {
    font-size: 32px;
    flex-shrink: 0;
  }

  .subsidy-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .subsidy-text p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }

  /* Options */
  .options-toggle {
    margin-top: 32px;
    text-align: center;
  }

  .options-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.2s;
  }

  .options-trigger:hover {
    border-color: var(--orange);
    color: var(--orange);
  }

  .options-panel {
    display: none;
    margin-top: 24px;
    background: white;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid var(--border);
  }

  .options-panel.open { display: block; }

  .options-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
  }

  .options-table th {
    text-align: left;
    padding: 10px 16px;
    font-weight: 700;
    color: var(--gray);
    border-bottom: 2px solid var(--border);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .options-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--dark-2);
    vertical-align: top;
    line-height: 1.6;
  }

  .options-table tr:last-child td { border-bottom: none; }

  /* ===== FAQ ===== */
  #faq {
    background: white;
  }

  .faq-list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-question {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
    transition: background 0.2s;
  }

  .faq-question:hover { background: var(--orange-pale); }

  .faq-q-text {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .faq-q-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--orange);
    flex-shrink: 0;
    line-height: 1.1;
  }

  .faq-question h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
  }

  .faq-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--orange-pale);
    border: none;
    color: var(--orange);
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
  }

  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--orange);
    color: white;
  }

  .faq-answer {
    display: none;
    padding: 0 28px 24px 60px;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
  }

  .faq-item.open .faq-answer { display: block; }

  /* ===== FINAL CTA ===== */
  #final-cta {
    background: var(--gray-light);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
  }

  #final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,92,26,0.05) 0%, transparent 70%);
  }

  #final-cta .container {
    position: relative;
    z-index: 2;
  }

  #final-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 16px;
  }

  #final-cta > .container > p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 48px;
  }

  .final-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  .final-cta-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .final-cta-card:hover { box-shadow: 0 8px 32px rgba(232,92,26,0.12); }

  .final-cta-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .final-cta-card p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
  }

  /* Form */
  .form-group {
    margin-bottom: 12px;
    text-align: left;
  }

  .form-group label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .form-group input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: white;
    font-size: 13px;
    font-family: 'Noto Sans JP', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus {
    border-color: var(--orange);
  }

  .form-group input::placeholder { color: rgba(255,255,255,0.2); }

  /* ===== FOOTER ===== */
  footer {
    background: white;
    padding: 60px 40px 32px;
    color: var(--gray);
    border-top: 1px solid var(--border);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand .logo-text { color: var(--dark); }

  .footer-tagline {
    font-size: 12px;
    margin-top: 12px;
    line-height: 1.7;
  }

  .footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col ul li {
    font-size: 12px;
  }

  .footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--orange); }

  .footer-contact dt {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    margin-top: 12px;
  }

  .footer-contact dd {
    font-size: 13px;
    color: var(--dark);
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--gray);
  }

  .footer-bottom a {
    color: var(--gray) !important;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom a:hover { color: var(--orange) !important; }

  /* ===== SCROLL ANIMATIONS ===== */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: block; margin-top: 32px; }
    .cta-inner { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    nav { display: none; }
    .howto-steps { flex-direction: column; }
  }

  @media (max-width: 600px) {
    section { padding: 70px 20px; }
    header { padding: 0 20px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
  }