/* ========================================
   Meeting Insights LP - Custom Styles
   ======================================== */

/* 1. Design Tokens
---------------------------------------- */
    :root {
      --mi-blue: #32bbd9; /* primary accent (soft purple) */
      --mi-navy: #2d2a55; /* deep purple text */
      --mi-light: #f6f4ff;
      --mi-border: #b7dce3;
      --mi-text: #2a2a3a;
      --mi-accent: #f1efff;
    }
	  
    body {
      color: var(--mi-text);
      font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      line-height: 1.7;
      background: #fff;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      font-synthesis-weight: none;
    }

    h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    }

    strong {
    font-weight: 700;
    }

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

    .navbar {
      backdrop-filter: blur(8px);
      background: rgba(255,255,255,.9);
      border-bottom: 1px solid rgba(13,110,253,.08);
    }

    .hero {
      background: linear-gradient(135deg, #0c1730 0%, #0c1730 55%, #0c1730 100%);
      color: #fff;
      padding: 7rem 0 5rem;
      overflow: hidden;
      position: relative;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -100px;
      top: -60px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(13,110,253,.12), rgba(13,110,253,0));
      border-radius: 50%;
    }

    .btn-primary{
    background:#0057B8;
    border:none;
    padding:12px 28px;
    }

    .section {
      padding: 5rem 0;
      content-visibility: auto;
      contain-intrinsic-size: 1px 900px;
    }

    .section-light {
      background: #F5F7FA;
    }

    .section-dark {
      background:  linear-gradient(135deg, #0c1730 0%, #0c1730 55%, #0c1730 100%);
    }

    .eyebrow {
      color: #32bbd9;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-size: .82rem;
      margin-bottom: .9rem;
    }

    .display-title {
      font-size: clamp(2.2rem, 4vw, 3.7rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -.02em;
      color: #ffffff;
    }

    .lead-copy {
      font-size: 1.08rem;
      font-weight: 400;
      line-height: 1.9;
      color: #ffffff;
    }

    .text-white {
      color: #ffffff;
    }

    .soft-card,
    .icon-card,
    .compare-box,
    .scene-card,
    .step-card,
    .feature-card {
      background: #fff;
      border: 1px solid var(--mi-border);
      border-radius: 1.25rem;
      box-shadow: 0 10px 24px rgba(17, 36, 71, .05);
    }

    .soft-card { padding: 1.5rem; }
    .icon-card { padding: 1.4rem; height: 100%; }
    .feature-card { padding: 1.5rem; height: 100%; }
    .scene-card { padding: 1.25rem; height: 100%; }
    .step-card { padding: 1.25rem; text-align: center; height: 100%; }
    .flow-card {
      background: #fff;
      border: 1px solid var(--mi-border);
      border-radius: 1.25rem;
      box-shadow: 0 10px 24px rgba(45, 42, 85, .05);
      padding: 1.5rem;
      width: 100%;
    }

    .flow-step {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 1rem;
      align-items: stretch;
    }

    .flow-number {
      width: 74px;
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border: 1px solid var(--mi-border);
      border-radius: 20px;
      color: var(--mi-blue);
      font-weight: 800;
      font-size: 1.05rem;
      letter-spacing: .02em;
      box-shadow: 0 10px 24px rgba(45, 42, 85, .04);
    }

    .flow-connector {
      width: 2px;
      height: 28px;
      background: linear-gradient(180deg, rgba(124,108,255,.15), rgba(124,108,255,.55));
      margin: .35rem 0 .35rem 36px;
      border-radius: 999px;
    }

    .metric-chip {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .58rem .95rem;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--mi-border);
      font-weight: 500;
      font-size: .92rem;
      margin: .35rem .35rem 0 0;
      color: var(--mi-navy);
    }

    .service-pill {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: .72rem 1rem;
      background: #fff;
      border: 1px solid var(--mi-border);
      border-radius: 999px;
      color: var(--mi-navy);
      font-size: .92rem;
      font-weight: 500;
      box-shadow: 0 6px 18px rgba(45, 42, 85, .04);
    }

    .service-pill i {
      color: var(--mi-blue);
      font-size: 1rem;
    }

    .service-bar {
      position: relative;
      z-index: 2;
    }
    
	.comparison-table {
      border: 1px solid var(--mi-border);
      border-collapse: separate;
      border-spacing: 0;
    }

    .comparison-table thead th {
      background: var(--mi-accent);
      color: var(--mi-navy);
      font-weight: 700;
      border-bottom: 1px solid var(--mi-border);
      padding: 1rem 1rem;
      white-space: nowrap;
    }

    .comparison-table tbody th,
    .comparison-table tbody td {
      padding: 1rem 1rem;
      border-color: var(--mi-border);
      vertical-align: middle;
    }

    .comparison-table tbody th {
      color: var(--mi-navy);
      font-weight: 700;
      background: #fff;
    }

    .comparison-table tbody td {
      background: #fff;
    }

    .comparison-table tbody tr td:last-child {
      background: #fcfbff;
      color: var(--mi-navy);
    }

    .diagram {
      background: #fff;
      border: 1px solid var(--mi-border);
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 10px 24px rgba(17, 36, 71, .05);
    }

    .flow-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: .75rem;
    }

    .flow-box {
      min-width: 140px;
      padding: 1rem 1rem;
      border-radius: 1rem;
      border: 1px solid var(--mi-border);
      background: linear-gradient(180deg, #ffffff, #f7fbff);
      text-align: center;
      font-weight: 700;
      letter-spacing: -.01em;
      color: var(--mi-navy);
    }

    .flow-box i {
      display: block;
      font-size: 1.5rem;
      color: var(--mi-blue);
      margin-bottom: .45rem;
    }

    .flow-arrow {
      font-size: 1.4rem;
      color: var(--mi-blue);
      opacity: .75;
    }

    .mini-flow {
      display: grid;
      gap: .75rem;
    }

    .mini-flow .mini-box {
      padding: .9rem 1rem;
      background: var(--mi-light);
      border: 1px solid var(--mi-border);
      border-radius: 1rem;
      font-weight: 500;
      line-height: 1.6;
    }

    .badge-soft {
      background: var(--mi-accent);
      color: var(--mi-blue);
      border: 1px solid rgba(13,110,253,.12);
      padding: .5rem .8rem;
      border-radius: 999px;
      font-size: .84rem;
      font-weight: 700;
    }

    .feature-icon,
    .scene-icon,
    .step-no {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #0c1730;
      color: var(--mi-blue);
      font-size: 1.35rem;
      margin-bottom: 1rem;
    }

    .step-no {
      font-weight: 800;
      font-size: 1.1rem;
      letter-spacing: -.01em;
      margin: 0 auto 1rem;
    }

    .before-after {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .compare-box {
      padding: 1.5rem;
      height: 100%;
    }

    .cta-wrap {
      background: linear-gradient(135deg, #0c1730 0%, #0c1730 100%);
      color: #fff;
      border-radius: 1.75rem;
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }

    .cta-wrap::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      right: -40px;
      bottom: -60px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,.16), rgba(255,255,255,0));
    }

    .list-check li {
      margin-bottom: .55rem;
    }

    .list-check i {
      color: var(--mi-blue);
      margin-right: .5rem;
    }

    .sticky-cta {
      position: fixed;
      bottom: 16px;
      right: 16px;
      z-index: 1030;
      box-shadow: 0 12px 30px rgba(13,110,253,.25);
      border-radius: 999px;
    }

    .hero-visual {
      display: block;
      width: 100%;
      border-radius: 1.25rem;
      border: 1px solid var(--mi-border);
      margin-bottom: 1rem;
    }
	  
	.zoomable { cursor: zoom-in; }

    .visually-hidden-focusable:not(:focus):not(:focus-within) {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    footer {
      border-top: 1px solid var(--mi-border);
      color: #5c7088;
    }

    @media (max-width: 991.98px) {
      .hero {
        padding-top: 6rem;
      }
    }

    @media (max-width: 767.98px) {
      .section {
        padding: 4rem 0;
      }

      .before-after {
        grid-template-columns: 1fr;
      }

      .cta-wrap {
        padding: 2rem;
      }

      .sticky-cta {
        left: 16px;
        right: 16px;
        border-radius: 1rem;
      }

      .flow-step {
        grid-template-columns: 58px 1fr;
        gap: .85rem;
      }

      .flow-number {
        width: 58px;
        min-height: 58px;
        border-radius: 16px;
        font-size: .95rem;
      }

      .flow-connector {
        margin-left: 28px;
        height: 22px;
      }

      .service-pill {
        width: 100%;
        justify-content: center;
      }
    }