/*
Theme Name: CompFit LP v5
Theme URI: https://compfit.jp
Author: Broot LLC.
Author URI: https://broot-llc.com
Description: パーソナルジム専用オールインワンアプリ CompFit のランディングページテーマ v5
Version: 5.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: compfit-lp-v5
*/

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Noto Sans JP', 'Inter', sans-serif;
      color: #1a1a2e;
      background: #fff;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ===== UTILITIES ===== */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 100px 0; }
    .section--gray { background: #f7f8fa; }
    .section-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #1a56db;
      margin-bottom: 8px;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .section-subtitle {
      font-size: 1rem;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto 48px;
    }
    .text-center { text-align: center; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      border-radius: 60px;
      padding: 16px 40px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .btn--primary {
      background: #1a56db;
      color: #fff;
      box-shadow: 0 4px 24px rgba(26, 86, 219, 0.25);
    }
    .btn--primary:hover {
      background: #154ab5;
      box-shadow: 0 8px 32px rgba(26, 86, 219, 0.35);
      transform: translateY(-2px);
    }
    .btn--green {
      background: #5cb85c;
      color: #fff;
      box-shadow: 0 4px 24px rgba(92, 184, 92, 0.25);
    }
    .btn--green:hover {
      background: #4a9e4a;
      box-shadow: 0 8px 32px rgba(92, 184, 92, 0.35);
      transform: translateY(-2px);
    }
    .btn--outline {
      background: transparent;
      color: #1a56db;
      border: 2px solid #1a56db;
    }
    .btn--outline:hover {
      background: #1a56db;
      color: #fff;
    }
    .btn--large {
      padding: 20px 48px;
      font-size: 1.1rem;
    }
    .btn--dark {
      background: #1a1a2e;
      color: #fff;
      box-shadow: 0 4px 24px rgba(26, 26, 46, 0.3);
    }
    .btn--dark:hover {
      background: #0f0f1e;
      box-shadow: 0 8px 32px rgba(26, 26, 46, 0.4);
      transform: translateY(-2px);
    }
    .btn svg { width: 18px; height: 18px; }

    .cta-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .cta-group__label {
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.05em;
    }
    .cta-group--hero .cta-group__label { color: #6fcf6f; }
    .cta-group--dark .cta-group__label { color: #fbbf24; }
    .cta-group--light .cta-group__label { color: #1a56db; }

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: all 0.3s;
    }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .nav__logo {
      font-family: 'Inter', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: #1a1a2e;
      letter-spacing: -0.02em;
    }
    .nav__logo-img { height: 32px; width: auto; mix-blend-mode: multiply; }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .nav__links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: #475569;
      transition: color 0.2s;
    }
    .nav__links a:hover { color: #1a56db; }
    .nav__cta {
      font-size: 0.875rem !important;
      padding: 10px 24px !important;
      color: #fff !important;
    }
    .nav__hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav__hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #1a1a2e;
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ===== HERO (A - Attention) ===== */
    .hero {
      position: relative;
      padding: 110px 0 60px;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1a1a2e 100%);
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(26, 86, 219, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(92, 184, 92, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero__inner {
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26, 86, 219, 0.15);
      border: 1px solid rgba(26, 86, 219, 0.3);
      color: #4a90e2;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .hero__badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #4a90e2;
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    .hero__title {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.3;
      color: #fff;
      margin-bottom: 16px;
    }
    .hero__title em {
      font-style: normal;
      background: linear-gradient(90deg, #4a90e2, #6fcf6f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero__desc {
      font-size: 0.95rem;
      color: #94a3b8;
      line-height: 1.8;
      margin-bottom: 28px;
    }
    .hero__actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero__image {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero__device-img {
      width: 115%;
      max-width: none;
      height: auto;
      filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
      animation: heroFloat 6s ease-in-out infinite;
      transform-origin: center center;
    }
    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .hero__image::before {
      content: '';
      position: absolute;
      width: 120%;
      height: 120%;
      background: radial-gradient(ellipse at center, rgba(92, 184, 92, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      z-index: -1;
    }

    /* ===== HERO FLOATS ===== */
    .hero__float {
      position: absolute;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-radius: 14px;
      padding: 12px 18px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: heroFloat2 5s ease-in-out infinite;
      z-index: 2;
    }
    .hero__float--1 {
      bottom: -20px;
      left: -30px;
    }
    .hero__float--2 {
      top: -20px;
      right: -30px;
      animation-delay: -1.8s;
    }
    .hero__float--3 {
      bottom: 30%;
      right: -45px;
      animation-delay: -3.5s;
    }
    @keyframes heroFloat2 {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
    .hero__float-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .hero__float-icon--blue { background: #d4e4f7; }
    .hero__float-icon--green { background: #d9f0d9; }
    .hero__float-icon--orange { background: #fef3c7; }
    .hero__float-text {
      font-size: 0.78rem;
      font-weight: 600;
      color: #1a1a2e;
      white-space: nowrap;
    }
    .hero__float-sub {
      font-size: 0.68rem;
      color: #64748b;
      white-space: nowrap;
    }
    @media (max-width: 768px) {
      .hero__float {
        padding: 8px 12px;
        border-radius: 10px;
        gap: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      }
      .hero__float-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        border-radius: 8px;
      }
      .hero__float-text { font-size: 0.7rem; }
      .hero__float-sub { font-size: 0.6rem; }
      .hero__float--1 {
        bottom: -24px;
        left: 4px;
      }
      .hero__float--2 {
        top: -24px;
        right: 4px;
      }
      .hero__float--3 {
        display: none;
      }
    }

    /* ===== AI HIGHLIGHT ===== */
    .ai-highlight {
      padding: 48px 0;
      background: linear-gradient(135deg, #0f172a, #1a1a2e);
      position: relative;
      overflow: hidden;
    }
    .ai-highlight::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(26, 86, 219, 0.12) 0%, transparent 70%);
      border-radius: 50%;
    }
    .ai-highlight__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }
    .ai-highlight__badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(26, 86, 219, 0.2), rgba(92, 184, 92, 0.2));
      border: 1px solid rgba(26, 86, 219, 0.4);
      border-radius: 100px;
      padding: 10px 24px;
      animation: aiPulse 3s ease-in-out infinite;
    }
    @keyframes aiPulse {
      0%, 100% { box-shadow: 0 0 20px rgba(26, 86, 219, 0.1); }
      50% { box-shadow: 0 0 40px rgba(26, 86, 219, 0.25); }
    }
    .ai-highlight__badge-dot {
      width: 10px;
      height: 10px;
      background: linear-gradient(135deg, #4a90e2, #4a90e2);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
    .ai-highlight__badge-text {
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      background: linear-gradient(90deg, #4a90e2, #4a90e2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .ai-highlight__text {
      color: #e2e8f0;
      font-size: 1.1rem;
      font-weight: 600;
    }
    .ai-highlight__text em {
      font-style: normal;
      background: linear-gradient(90deg, #4a90e2, #4a90e2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .ai-highlight__note {
      display: block;
      margin-top: 8px;
      font-size: 0.7rem;
      color: #64748b;
      letter-spacing: 0.02em;
    }

    /* ===== AI FEATURE CARD ===== */
    .feature-ai {
      background: linear-gradient(135deg, #0f172a 0%, #1a2340 50%, #1a1a2e 100%);
      border-radius: 24px;
      padding: 64px 48px;
      margin-top: 80px;
      position: relative;
      overflow: hidden;
    }
    .feature-ai::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(26, 86, 219, 0.15) 0%, transparent 70%);
      border-radius: 50%;
    }
    .feature-ai::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(92, 184, 92, 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }
    .feature-ai__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .feature-ai__label {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: linear-gradient(90deg, #4a90e2, #4a90e2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 8px;
    }
    .feature-ai__title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .feature-ai__desc {
      font-size: 0.95rem;
      color: #94a3b8;
      line-height: 1.9;
      margin-bottom: 28px;
    }
    .feature-ai__capabilities {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .feature-ai__cap {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #e2e8f0;
      font-size: 0.9rem;
      font-weight: 500;
    }
    .feature-ai__cap-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, rgba(26, 86, 219, 0.2), rgba(92, 184, 92, 0.2));
      border: 1px solid rgba(26, 86, 219, 0.3);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .feature-ai__visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feature-ai__chat {
      width: 100%;
      max-width: 360px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 28px;
      backdrop-filter: blur(10px);
    }
    .feature-ai__chat-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .feature-ai__chat-avatar {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, #4a90e2, #4a90e2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }
    .feature-ai__chat-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: #fff;
    }
    .feature-ai__chat-status {
      font-size: 0.7rem;
      color: #6fcf6f;
    }
    .feature-ai__chat-msgs {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .feature-ai__chat-msg {
      padding: 12px 16px;
      border-radius: 14px;
      font-size: 0.8rem;
      line-height: 1.6;
      max-width: 85%;
    }
    .feature-ai__chat-msg--ai {
      background: linear-gradient(135deg, rgba(26, 86, 219, 0.15), rgba(92, 184, 92, 0.15));
      border: 1px solid rgba(26, 86, 219, 0.2);
      color: #e2e8f0;
      align-self: flex-start;
    }
    .feature-ai__chat-msg--user {
      background: rgba(255,255,255,0.08);
      color: #cbd5e1;
      align-self: flex-end;
    }
    .feature-ai__chat-typing {
      display: flex;
      gap: 4px;
      padding: 12px 16px;
      align-self: flex-start;
    }
    .feature-ai__chat-typing span {
      width: 6px;
      height: 6px;
      background: #4a90e2;
      border-radius: 50%;
      animation: typingDot 1.4s infinite;
    }
    .feature-ai__chat-typing span:nth-child(2) { animation-delay: 0.2s; }
    .feature-ai__chat-typing span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes typingDot {
      0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
      30% { opacity: 1; transform: translateY(-4px); }
    }
    @media (max-width: 768px) {
      .ai-highlight__inner { flex-direction: column; text-align: center; gap: 16px; }
      .feature-ai { padding: 40px 24px; margin-top: 48px; }
      .feature-ai__inner { grid-template-columns: 1fr; }
      .feature-ai__chat { max-width: 100%; }
    }

    /* ===== ABOUT ===== */
    .about__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }
    .about__text .section-title { text-align: left; }
    .about__desc {
      font-size: 0.95rem;
      color: #475569;
      line-height: 2;
      margin-bottom: 20px;
    }
    .about__points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }
    .about__point {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: #1a1a2e;
      background: #f7f8fa;
      border: 1px solid #e2e8f0;
      border-radius: 100px;
      padding: 8px 16px;
    }
    .about__point-icon {
      font-size: 1rem;
    }
    .about__visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .about__card {
      background: #f7f8fa;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 24px 20px;
      text-align: center;
      transition: all 0.3s;
    }
    .about__card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }
    .about__card:nth-child(1) { grid-column: span 2; }
    .about__card-icon {
      font-size: 1.6rem;
      margin-bottom: 8px;
    }
    .about__card-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: #1a1a2e;
      margin-bottom: 4px;
    }
    .about__card-sub {
      font-size: 0.75rem;
      color: #64748b;
    }
    @media (max-width: 768px) {
      .about__inner { grid-template-columns: 1fr; }
      .about__text .section-title { text-align: center; }
      .about__desc { text-align: center; }
      .about__points { justify-content: center; }
    }

    /* ===== PROBLEMS (I - Interest) ===== */
    .problems__list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .problem-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 32px 28px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .problem-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #1a56db, #4a90e2);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .problem-card:hover {
      border-color: #b3cde8;
      box-shadow: 0 8px 32px rgba(26, 86, 219, 0.08);
      transform: translateY(-4px);
    }
    .problem-card:hover::before { opacity: 1; }
    .problem-card__icon {
      width: 48px;
      height: 48px;
      background: #f1f5f9;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }
    .problem-card__title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.5;
    }
    .problem-card__desc {
      font-size: 0.9rem;
      color: #64748b;
      line-height: 1.8;
    }

    /* === SOLUTION BRIDGE === */
    .solution-bridge {
      padding: 80px 0;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .solution-bridge::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(92, 184, 92, 0.15), transparent 70%);
      border-radius: 50%;
    }
    .solution-bridge__inner { position: relative; z-index: 1; }
    .solution-bridge__arrow {
      font-size: 2rem;
      color: #6fcf6f;
      margin-bottom: 16px;
    }
    .solution-bridge__title {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
      line-height: 1.4;
    }
    .solution-bridge__title em {
      font-style: normal;
      background: linear-gradient(90deg, #4a90e2, #6fcf6f);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .solution-bridge__desc {
      font-size: 1rem;
      color: #94a3b8;
      max-width: 560px;
      margin: 0 auto 32px;
      line-height: 1.9;
    }
    .solution-bridge__features {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .solution-bridge__feat {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #e2e8f0;
      font-size: 0.95rem;
      font-weight: 500;
    }
    .solution-bridge__feat-icon {
      width: 36px;
      height: 36px;
      background: rgba(92, 184, 92, 0.15);
      border: 1px solid rgba(92, 184, 92, 0.3);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    /* ===== FEATURES TOGGLE ===== */
    .features__toggle {
      display: inline-flex;
      background: #e2e8f0;
      border-radius: 60px;
      padding: 4px;
      margin-top: 32px;
      margin-bottom: 8px;
    }
    .features__toggle-btn {
      padding: 12px 32px;
      border: none;
      border-radius: 60px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      background: transparent;
      color: #64748b;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .features__toggle-btn.active {
      background: #fff;
      color: #1a1a2e;
      box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }
    .features__toggle-btn:hover:not(.active) {
      color: #1a1a2e;
    }
    .features__toggle-badge {
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 100px;
      background: #e8f0fb;
      color: #1a56db;
    }
    .features__toggle-btn.active .features__toggle-badge {
      background: #1a56db;
      color: #fff;
    }
    .features__panel {
      display: none;
      animation: fadeIn 0.3s ease;
    }
    .features__panel.active { display: block; }

    /* ===== FEATURES GRID (D - Desire) ===== */
    .features__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 32px;
    }
    .feature-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 28px 24px;
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, #1a56db, #5cb85c);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .feature-card:hover {
      border-color: #b3cde8;
      box-shadow: 0 8px 32px rgba(26, 86, 219, 0.08);
      transform: translateY(-4px);
    }
    .feature-card:hover::before { opacity: 1; }
    .feature-card__icon {
      width: 48px;
      height: 48px;
      background: #f1f5f9;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
    }
    .feature-card__title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .feature-card__summary {
      font-size: 0.85rem;
      color: #64748b;
      line-height: 1.7;
      margin-bottom: 12px;
    }
    .feature-card__more {
      font-size: 0.8rem;
      font-weight: 600;
      color: #1a56db;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .feature-card__more::after {
      content: '→';
      transition: transform 0.2s;
    }
    .feature-card:hover .feature-card__more::after {
      transform: translateX(4px);
    }

    /* Modal */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .modal-overlay.active { display: flex; }
    .modal {
      background: #fff;
      border-radius: 20px;
      max-width: 600px;
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      padding: 40px;
      position: relative;
      animation: modalIn 0.3s ease;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: translateY(20px) scale(0.97); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    .modal__close {
      position: absolute;
      top: 16px; right: 16px;
      width: 36px; height: 36px;
      border: none;
      background: #f1f5f9;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .modal__close:hover { background: #e2e8f0; }
    .modal__icon {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #e8f0fb, #d4e4f7);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
    }
    .modal__title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .modal__desc {
      font-size: 0.95rem;
      color: #475569;
      line-height: 1.9;
      margin-bottom: 24px;
    }
    .modal__tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .modal__tag {
      font-size: 0.8rem;
      font-weight: 500;
      color: #1a56db;
      background: #e8f0fb;
      padding: 6px 14px;
      border-radius: 100px;
    }
    @media (max-width: 768px) {
      .features__grid { grid-template-columns: 1fr; }
      .features__toggle-btn { padding: 10px 20px; font-size: 0.8rem; }
      .modal { padding: 28px 20px; margin: 16px; }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
      .features__grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ===== PRICING (D - Desire) ===== */
    .pricing__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 960px;
      margin: 48px auto 0;
    }
    .pricing__note {
      margin-top: 24px;
      font-size: 0.95rem;
      color: #475569;
      font-weight: 600;
    }
    .pricing-card {
      background: #fff;
      border: 2px solid #e2e8f0;
      border-radius: 20px;
      padding: 40px 36px;
      position: relative;
      transition: all 0.3s;
    }
    .pricing-card--featured {
      border-color: #1a56db;
      box-shadow: 0 12px 48px rgba(26, 86, 219, 0.12);
    }
    .pricing-card__badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: #1a56db;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 5px 20px;
      border-radius: 100px;
    }
    .pricing-card__name {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .pricing-card__price {
      font-family: 'Inter', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 4px;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
    }
    .pricing-card__price span {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      color: #64748b;
    }
    .pricing-card__saving {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: linear-gradient(135deg, #fef3c7, #fde68a);
      color: #92400e;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      margin-bottom: 8px;
    }
    .pricing-card--featured .pricing-card__saving {
      background: linear-gradient(135deg, #dbeafe, #bfdbfe);
      color: #1e40af;
    }
    .pricing-card__note {
      font-size: 0.8rem;
      color: #94a3b8;
      margin-bottom: 24px;
    }
    .pricing-card__features {
      margin-bottom: 32px;
    }
    .pricing-card__features li {
      font-size: 0.9rem;
      color: #475569;
      padding: 8px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pricing-card__features li::before {
      content: '✓';
      color: #5cb85c;
      font-weight: 700;
      font-size: 0.9rem;
    }
    .pricing-card .btn { width: 100%; }

    /* ===== CTA BANNER ===== */
    .cta {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(26, 86, 219, 0.2), transparent 70%);
      border-radius: 50%;
    }
    .cta__inner { position: relative; z-index: 1; }
    .cta__title {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }
    .cta__desc {
      font-size: 1rem;
      color: #94a3b8;
      margin-bottom: 36px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta__note {
      font-size: 0.8rem;
      color: #64748b;
      margin-top: 16px;
    }

    /* ===== STORY (M - Memory) ===== */
    .story__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .story__visual {
      position: relative;
      background: linear-gradient(135deg, #f0f4ff, #e8f5e9);
      border-radius: 24px;
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }
    .story__timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }
    .story__timeline::before {
      content: '';
      position: absolute;
      left: 18px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, #1a56db, #5cb85c);
    }
    .story__timeline-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 12px 0;
    }
    .story__timeline-dot {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid #1a56db;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      box-shadow: 0 2px 8px rgba(26, 86, 219, 0.15);
    }
    .story__timeline-dot--green { border-color: #5cb85c; box-shadow: 0 2px 8px rgba(92, 184, 92, 0.15); }
    .story__timeline-text {
      font-size: 0.85rem;
      color: #475569;
      line-height: 1.6;
      padding-top: 8px;
    }
    .story__timeline-text strong {
      display: block;
      font-size: 0.9rem;
      color: #1a1a2e;
      margin-bottom: 2px;
    }
    .story__text .section-title { text-align: left; }
    .story__desc {
      font-size: 1rem;
      color: #475569;
      line-height: 2;
      margin-bottom: 24px;
    }
    .story__quote {
      background: #f0f4ff;
      border-left: 4px solid #1a56db;
      border-radius: 0 12px 12px 0;
      padding: 20px 24px;
      font-size: 0.95rem;
      color: #334155;
      line-height: 1.9;
      font-style: italic;
    }

    /* ===== FLOW (M - Memory) ===== */
    .flow__steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 48px;
      position: relative;
    }
    .flow__steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: #e2e8f0;
    }
    .flow-step {
      text-align: center;
      position: relative;
    }
    .flow-step__num {
      width: 56px;
      height: 56px;
      margin: 0 auto 20px;
      background: #fff;
      border: 2px solid #1a56db;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #1a56db;
      position: relative;
      z-index: 1;
    }
    .flow-step__title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .flow-step__desc {
      font-size: 0.85rem;
      color: #64748b;
      line-height: 1.7;
    }

    /* ===== FAQ (M - Memory) ===== */
    .faq__list {
      max-width: 720px;
      margin: 48px auto 0;
    }
    .faq-item {
      border-bottom: 1px solid #e2e8f0;
    }
    .faq-item__q {
      width: 100%;
      background: none;
      border: none;
      padding: 24px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: #1a1a2e;
      text-align: left;
      line-height: 1.6;
    }
    .faq-item__q:hover { color: #1a56db; }
    .faq-item__icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #f1f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-left: 16px;
      transition: all 0.3s;
      font-size: 1.2rem;
      color: #64748b;
    }
    .faq-item.active .faq-item__icon {
      background: #1a56db;
      color: #fff;
      transform: rotate(45deg);
    }
    .faq-item__a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .faq-item.active .faq-item__a {
      max-height: 300px;
      padding-bottom: 24px;
    }
    .faq-item__a p {
      font-size: 0.9rem;
      color: #64748b;
      line-height: 1.9;
    }

    /* ===== TRIAL FORM (A - Action) ===== */
    .trial {
      padding: 80px 0;
      background: #f7f8fa;
    }
    .trial__inner {
      max-width: 720px;
      margin: 0 auto;
    }
    .trial__tabs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 40px;
    }
    .trial__tab {
      background: #fff;
      border: 2px solid #e2e8f0;
      border-radius: 16px;
      padding: 28px 24px;
      cursor: pointer;
      transition: all 0.3s;
      text-align: center;
    }
    .trial__tab:hover { border-color: #94a3b8; }
    .trial__tab.active {
      border-color: #5cb85c;
      box-shadow: 0 4px 20px rgba(92, 184, 92, 0.12);
    }
    .trial__tab-icon {
      font-size: 2rem;
      margin-bottom: 8px;
    }
    .trial__tab-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .trial__tab-desc {
      font-size: 0.8rem;
      color: #64748b;
    }
    .trial__panel {
      display: none;
      animation: fadeIn 0.3s ease;
    }
    .trial__panel.active { display: block; }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .trial__line-box {
      background: #fff;
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      border: 1px solid #e2e8f0;
    }
    .trial__line-qr {
      width: 200px;
      height: 200px;
      margin: 0 auto 20px;
      background: #f0f8f0;
      border: 2px dashed #8fd68f;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }
    .trial__line-text {
      font-size: 0.9rem;
      color: #475569;
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .trial__line-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #06c755;
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 60px;
      transition: all 0.3s;
    }
    .trial__line-btn:hover {
      background: #05a848;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(6, 199, 85, 0.3);
    }
    .trial__form-box {
      background: #fff;
      border-radius: 20px;
      padding: 40px;
      border: 1px solid #e2e8f0;
    }
    .trial__form-row {
      margin-bottom: 20px;
    }
    .trial__form-row--half {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .trial__form-label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: #1a1a2e;
      margin-bottom: 6px;
    }
    .trial__form-label .required {
      font-size: 0.7rem;
      color: #ef4444;
      margin-left: 4px;
    }
    .trial__form-input,
    .trial__form-textarea {
      width: 100%;
      padding: 12px 16px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 0.9rem;
      border: 1.5px solid #e2e8f0;
      border-radius: 10px;
      background: #f8fafc;
      transition: all 0.2s;
      outline: none;
    }
    .trial__form-input:focus,
    .trial__form-textarea:focus {
      border-color: #1a56db;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
    }
    .trial__form-input::placeholder,
    .trial__form-textarea::placeholder {
      color: #94a3b8;
    }
    .trial__form-textarea {
      min-height: 120px;
      resize: vertical;
    }
    .trial__form-note {
      font-size: 0.75rem;
      color: #94a3b8;
      margin-top: 4px;
    }
    .trial__form-submit {
      width: 100%;
      margin-top: 8px;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #0f172a;
      color: #94a3b8;
      padding: 64px 0 32px;
    }
    .footer__inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 32px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 32px;
    }
    .footer__logo {
      font-family: 'Inter', sans-serif;
      font-size: 1.3rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
    }
    .footer__logo-img { height: 28px; width: auto; filter: brightness(0) invert(1); }
    .footer__tagline {
      font-size: 0.85rem;
      color: #64748b;
    }
    .footer__links {
      display: flex;
      gap: 48px;
    }
    .footer__links-group h4 {
      font-size: 0.8rem;
      font-weight: 600;
      color: #cbd5e1;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }
    .footer__links-group a {
      display: block;
      font-size: 0.85rem;
      color: #64748b;
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer__links-group a:hover { color: #fff; }
    .footer__copy {
      text-align: center;
      font-size: 0.8rem;
      color: #475569;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero__title { font-size: 2.2rem; }
      .hero__inner { gap: 40px; }
    }

    @media (max-width: 768px) {
      .section { padding: 64px 0; }
      .section-title { font-size: 1.6rem; }
      .nav__links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 0;
        border-bottom: 1px solid #e2e8f0;
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
      }
      .nav__links.active { display: flex; }
      .nav__links a {
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.95rem;
      }
      .nav__links a:last-child { border-bottom: none; }
      .nav__links .nav__cta {
        margin-top: 8px;
        text-align: center;
      }
      .nav__hamburger { display: flex; }
      .nav__hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .nav__hamburger.active span:nth-child(2) {
        opacity: 0;
      }
      .nav__hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }

      .hero {
        padding: 100px 0 48px;
        min-height: auto;
      }
      .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .hero__title { font-size: 1.8rem; }
      .hero__actions { justify-content: center; }
      .hero__image { max-width: 100%; margin: 0 auto; }
      .hero__device-img { width: 100%; }

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

      .solution-bridge__features { flex-direction: column; align-items: center; }

      .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
      }

      .story__inner { grid-template-columns: 1fr; }
      .story__text .section-title { text-align: center; }
      .story__desc { text-align: center; }
      .story__quote { text-align: left; }

      .flow__steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .flow__steps::before { display: none; }

      .trial__tabs { grid-template-columns: 1fr; }
      .trial__form-row--half { grid-template-columns: 1fr; }
      .trial__line-box, .trial__form-box { padding: 28px 20px; }

      .footer__inner { flex-direction: column; text-align: center; }
      .footer__links { flex-direction: column; gap: 24px; }
    }

    @media (max-width: 480px) {
      .hero__title { font-size: 1.5rem; }
      .hero__actions { flex-direction: column; align-items: center; }
      .btn--large { padding: 16px 36px; font-size: 1rem; }
      .flow__steps { grid-template-columns: 1fr; }
      .section-title { font-size: 1.4rem; }
      .solution-bridge__title { font-size: 1.5rem; }
    }

    /* ===== WPForms Override ===== */
    .trial__form-box .wpforms-container .wpforms-form input[type="text"],
    .trial__form-box .wpforms-container .wpforms-form input[type="email"],
    .trial__form-box .wpforms-container .wpforms-form input[type="tel"],
    .trial__form-box .wpforms-container .wpforms-form input[type="url"],
    .trial__form-box .wpforms-container .wpforms-form textarea {
      width: 100%;
      padding: 12px 16px;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 0.9rem;
      border: 1.5px solid #e2e8f0;
      border-radius: 10px;
      background: #f8fafc;
      transition: all 0.2s;
      outline: none;
      cursor: text;
    }
    .trial__form-box .wpforms-container .wpforms-form input:focus,
    .trial__form-box .wpforms-container .wpforms-form textarea:focus {
      border-color: #1a56db;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
    }
    .trial__form-box .wpforms-container .wpforms-form .wpforms-field-label {
      font-size: 0.85rem;
      font-weight: 600;
      color: #1a1a2e;
    }
    .trial__form-box .wpforms-container .wpforms-form .wpforms-submit-container button {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 600;
      font-size: 1.1rem;
      border: none;
      border-radius: 60px;
      padding: 20px 48px;
      cursor: pointer;
      background: #1a1a2e;
      color: #fff;
      box-shadow: 0 4px 24px rgba(26, 26, 46, 0.3);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .trial__form-box .wpforms-container .wpforms-form .wpforms-submit-container button:hover {
      background: #0f0f1e;
      box-shadow: 0 8px 32px rgba(26, 26, 46, 0.4);
      transform: translateY(-2px);
    }
