    /* =========================================================
       OpsNavi Landing Page
       Colors derived from logo:
         navy   #1F2A8E (primary)
         red    #D31F2E (accent)
         white  #FFFFFF (background)
       ========================================================= */
    :root {
      --navy: #1F2A8E;
      --navy-dark: #151E6B;
      --navy-hover: #2A36A8;
      --navy-50: #EEF0FA;
      --red: #D31F2E;
      --red-dark: #B0162A;
      --red-50: #FDEBED;
      --bg: #FFFFFF;
      --surface: #F5F7FB;
      --border: #E5E7EB;
      --text: #0F172A;
      --text-muted: #4B5563;
      --text-soft: #6B7280;
      --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
      --shadow-md: 0 6px 20px rgba(31, 42, 142, 0.08);
      --shadow-lg: 0 20px 60px rgba(31, 42, 142, 0.15);
      --radius: 12px;
      --radius-lg: 20px;
      --max-width: 1120px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--navy); text-decoration: none; }
    a:hover { color: var(--navy-hover); }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ---------- Header ---------- */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: saturate(180%) blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 22px;
      color: var(--navy);
      letter-spacing: 0.5px;
    }
    .logo-img {
      height: 56px;
      width: auto;
      display: block;
    }
    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--navy);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 900;
      font-size: 18px;
    }
    .logo-mark .accent { color: var(--red); }
    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav a {
      color: var(--text);
      font-size: 14px;
      font-weight: 500;
    }
    .nav a:hover { color: var(--navy); }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.2s ease;
      cursor: pointer;
      border: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--red);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--red-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(211, 31, 46, 0.3);
    }
    .btn-secondary {
      background: var(--navy);
      color: #fff;
    }
    .btn-secondary:hover {
      background: var(--navy-hover);
      color: #fff;
      transform: translateY(-1px);
    }
    .btn-outline {
      background: transparent;
      color: var(--navy);
      border: 2px solid var(--navy);
    }
    .btn-outline:hover {
      background: var(--navy);
      color: #fff;
    }
    .btn-lg {
      padding: 16px 36px;
      font-size: 16px;
    }
    .nav-cta { display: inline-flex; }

    /* ---------- Hero ---------- */
    .hero {
      position: relative;
      padding: 120px 0 140px;
      background:
        radial-gradient(ellipse 800px 600px at 90% 10%, rgba(211, 31, 46, 0.32) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 5% 90%, rgba(80, 100, 240, 0.30) 0%, transparent 60%),
        linear-gradient(135deg, #0A1245 0%, #151E6B 45%, #1F2A8E 100%);
      color: #fff;
      overflow: hidden;
      isolation: isolate;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1.5px);
      background-size: 28px 28px;
      pointer-events: none;
      z-index: 0;
      -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
      mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    }
    .hero::after {
      content: "";
      position: absolute;
      width: 480px;
      height: 480px;
      top: -120px;
      right: -120px;
      background: radial-gradient(circle, rgba(211, 31, 46, 0.45) 0%, transparent 60%);
      filter: blur(40px);
      pointer-events: none;
      z-index: 0;
      animation: hero-glow 8s ease-in-out infinite;
    }
    @keyframes hero-glow {
      0%, 100% { opacity: 0.7; transform: scale(1); }
      50%      { opacity: 1;   transform: scale(1.15); }
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      color: rgba(255, 255, 255, 0.95);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.6px;
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      background: var(--red);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--red);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1;   transform: scale(1); }
      50%      { opacity: 0.5; transform: scale(0.85); }
    }
    .hero h1 {
      font-size: 56px;
      font-weight: 900;
      line-height: 1.22;
      letter-spacing: -0.8px;
      margin: 0 0 28px;
      background: linear-gradient(135deg, #ffffff 0%, #c9cef0 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero h1 .accent {
      color: var(--red);
      -webkit-text-fill-color: var(--red);
      background: none;
      position: relative;
      display: inline-block;
    }
    .hero h1 .accent::after {
      content: "";
      position: absolute;
      inset: -10%;
      background: var(--red);
      filter: blur(28px);
      opacity: 0.4;
      z-index: -1;
      border-radius: 30%;
    }
    .hero p.lead {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.72);
      margin: 0 0 36px;
      line-height: 1.9;
    }
    .hero p.lead strong {
      color: #fff;
      font-weight: 700;
    }
    .hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero .btn-primary {
      background: var(--red);
      box-shadow: 0 12px 40px rgba(211, 31, 46, 0.55);
      animation: cta-glow 3s ease-in-out infinite;
    }
    @keyframes cta-glow {
      0%, 100% { box-shadow: 0 12px 40px rgba(211, 31, 46, 0.55); }
      50%      { box-shadow: 0 12px 50px rgba(211, 31, 46, 0.85); }
    }
    .hero .btn-outline {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.25);
      color: #fff;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .hero .btn-outline:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.5);
      color: #fff;
    }
    .hero-meta {
      margin-top: 32px;
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      color: rgba(255, 255, 255, 0.65);
      font-size: 13px;
      font-weight: 500;
    }
    .hero-meta span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .hero-meta span::before {
      content: "✓";
      color: var(--red);
      font-weight: 900;
    }

    /* Hero illustration — 3D tilted card with floating badges */
    .hero-art-wrap {
      position: relative;
      perspective: 1400px;
    }
    .hero-art {
      position: relative;
      aspect-ratio: 5 / 4;
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.08);
      padding: 24px;
      transform: rotateY(-7deg) rotateX(5deg);
      animation: art-float 6s ease-in-out infinite;
      transition: transform 0.6s ease;
    }
    @keyframes art-float {
      0%, 100% { transform: rotateY(-7deg) rotateX(5deg) translateY(0); }
      50%      { transform: rotateY(-7deg) rotateX(5deg) translateY(-14px); }
    }
    .hero-art-wrap:hover .hero-art {
      transform: rotateY(-3deg) rotateX(2deg);
      animation-play-state: paused;
    }
    .float-badge {
      position: absolute;
      background: #fff;
      border-radius: 14px;
      padding: 12px 18px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 2;
      color: var(--text);
    }
    .float-badge .icon {
      width: 32px;
      height: 32px;
      border-radius: 9px;
      display: grid;
      place-items: center;
      font-size: 16px;
      flex-shrink: 0;
    }
    .float-badge .label {
      display: flex;
      flex-direction: column;
      line-height: 1.3;
    }
    .float-badge .label strong {
      color: var(--navy);
      font-weight: 800;
      font-size: 13px;
    }
    .float-badge .label .small {
      font-size: 10px;
      color: var(--text-soft);
      font-weight: 500;
      letter-spacing: 0.3px;
    }
    .float-badge.tl {
      top: 16px;
      left: -36px;
      animation: badge-float-1 5s ease-in-out infinite;
    }
    .float-badge.tl .icon {
      background: var(--navy-50);
      color: var(--navy);
    }
    .float-badge.br {
      bottom: 28px;
      right: -32px;
      animation: badge-float-2 7s ease-in-out infinite;
    }
    .float-badge.br .icon {
      background: #FEE2E2;
      color: var(--red);
    }
    @keyframes badge-float-1 {
      0%, 100% { transform: translateY(0)    rotate(-2deg); }
      50%      { transform: translateY(-12px) rotate(0deg); }
    }
    @keyframes badge-float-2 {
      0%, 100% { transform: translateY(0)    rotate(2deg); }
      50%      { transform: translateY(-14px) rotate(0deg); }
    }
    .mock-bar {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
    }
    .mock-bar span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #E5E7EB;
    }
    .mock-bar span:first-child { background: #FCA5A5; }
    .mock-bar span:nth-child(2) { background: #FCD34D; }
    .mock-bar span:nth-child(3) { background: #86EFAC; }
    .mock-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 8px;
      margin-bottom: 6px;
      font-size: 13px;
      font-family: "SF Mono", Monaco, Menlo, Consolas, monospace;
    }
    .mock-row.added { background: #ECFDF5; color: #047857; }
    .mock-row.modified { background: #FEF3C7; color: #B45309; }
    .mock-row.removed { background: #FEE2E2; color: #B91C1C; }
    .mock-row.unchanged { background: #F9FAFB; color: var(--text-soft); }
    .mock-row .badge {
      font-weight: 700;
      width: 20px;
      text-align: center;
    }
    .mock-row .name { flex: 1; }
    .mock-row .meta { font-size: 11px; opacity: 0.7; }

    /* Compare view mock — matches the actual app UI */
    .mock-tabs {
      display: flex;
      gap: 6px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .mock-tab {
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      background: #fff;
      color: var(--text-soft);
      border: 1px solid var(--border);
      white-space: nowrap;
    }
    .mock-tab.active {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }
    .mock-type-row {
      display: flex;
      align-items: center;
      padding: 10px 12px;
      border-radius: 8px;
      margin-bottom: 5px;
      background: #fff;
      border: 1px solid #E5E7EB;
      font-size: 12px;
      font-family: "SF Mono", Monaco, Menlo, Consolas, monospace;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
    }
    .mock-type-row .arrow {
      color: var(--red);
      margin-right: 8px;
      font-size: 9px;
      flex-shrink: 0;
    }
    .mock-type-row .name {
      flex: 1;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: -0.2px;
    }
    .mock-type-row .pills {
      display: flex;
      gap: 4px;
      align-items: center;
    }
    .mock-pill {
      padding: 2px 7px;
      border-radius: 5px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2px;
      white-space: nowrap;
    }
    .mock-pill.mod { background: #FFEDD5; color: #9A3412; }
    .mock-pill.add { background: #DCFCE7; color: #166534; }
    .mock-pill.del { background: #FEE2E2; color: #991B1B; }
    .mock-pill.same { background: #F3F4F6; color: #6B7280; }
    .mock-total {
      margin-left: 8px;
      font-weight: 800;
      color: var(--text);
      min-width: 32px;
      text-align: right;
      font-size: 12px;
    }

    /* ---------- Section base ---------- */
    section { padding: 100px 0; }
    .section-eyebrow {
      display: block;
      text-align: center;
      color: var(--red);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .section-title {
      text-align: center;
      font-size: 36px;
      font-weight: 900;
      color: var(--navy);
      margin: 0 0 16px;
      line-height: 1.4;
    }
    .section-lead {
      text-align: center;
      color: var(--text-muted);
      font-size: 16px;
      max-width: 680px;
      margin: 0 auto 56px;
    }

    /* ---------- 課題提起 (Problems) ---------- */
    .problems { background: var(--surface); }
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .problem-card {
      background: #fff;
      padding: 32px 28px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .problem-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--red);
      border-radius: var(--radius) 0 0 var(--radius);
    }
    .problem-card h3 {
      font-size: 17px;
      color: var(--navy);
      margin: 0 0 10px;
      font-weight: 700;
    }
    .problem-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.8;
    }

    /* ---------- About / Overview ---------- */
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about h2 {
      font-size: 32px;
      font-weight: 900;
      color: var(--navy);
      margin: 0 0 24px;
      line-height: 1.4;
    }
    .about h2 .accent { color: var(--red); }
    .about p {
      font-size: 16px;
      color: var(--text-muted);
      margin: 0 0 16px;
      line-height: 1.9;
    }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 32px;
    }
    .stat {
      padding: 20px;
      background: var(--navy-50);
      border-radius: var(--radius);
      text-align: center;
    }
    .stat .num {
      display: block;
      font-size: 28px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat .label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* ---------- Features ---------- */
    .features { background: var(--surface); }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: all 0.25s ease;
    }
    .feature-card:hover {
      border-color: var(--navy);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: var(--navy-50);
      color: var(--navy);
      display: grid;
      place-items: center;
      font-size: 22px;
      margin-bottom: 20px;
    }
    .feature-card h3 {
      font-size: 18px;
      color: var(--navy);
      margin: 0 0 10px;
      font-weight: 700;
    }
    .feature-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.85;
    }

    /* ---------- Benefits ---------- */
    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .benefit-card {
      padding: 36px 28px;
      border-radius: var(--radius);
      background: linear-gradient(180deg, #FFFFFF 0%, var(--navy-50) 100%);
      border: 1px solid var(--border);
      text-align: center;
    }
    .benefit-card .num {
      display: inline-block;
      font-size: 14px;
      font-weight: 900;
      color: var(--red);
      letter-spacing: 2px;
      margin-bottom: 12px;
    }
    .benefit-card h3 {
      font-size: 19px;
      color: var(--navy);
      margin: 0 0 12px;
      font-weight: 700;
    }
    .benefit-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.85;
    }

    /* ---------- Screenshots ---------- */
    .screens { background: var(--surface); }
    .screens-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
    }
    .screen-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
    }
    .screen-img {
      aspect-ratio: 16 / 10;
      background: linear-gradient(135deg, var(--navy-50), var(--surface));
      display: grid;
      place-items: center;
      color: var(--navy);
      font-size: 14px;
      font-weight: 700;
      position: relative;
      overflow: hidden;
    }
    .screen-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .screen-img-placeholder {
      padding: 24px;
      text-align: center;
      color: var(--text-soft);
      font-weight: 500;
      font-size: 13px;
      line-height: 1.7;
    }
    .screen-body {
      padding: 24px 28px;
    }
    .screen-body h3 {
      font-size: 17px;
      color: var(--navy);
      margin: 0 0 8px;
    }
    .screen-body p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
    }

    /* ---------- Pricing ---------- */
    .pricing-table-wrap {
      max-width: 880px;
      margin: 0 auto 40px;
      overflow-x: auto;
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
      background: #fff;
    }
    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
      min-width: 560px;
    }
    .pricing-table thead th {
      padding: 20px 24px;
      font-weight: 700;
      text-align: center;
      font-size: 15px;
      color: #fff;
      background: var(--navy);
      border-right: 1px solid rgba(255, 255, 255, 0.15);
    }
    .pricing-table thead th:first-child {
      text-align: left;
      background: #fff;
      border-right: 1px solid var(--border);
    }
    .pricing-table thead th.featured {
      background: var(--red);
      position: relative;
    }
    .pricing-table thead th:last-child {
      border-right: none;
    }
    .pricing-table tbody th {
      text-align: left;
      padding: 18px 24px;
      font-weight: 500;
      background: var(--surface);
      color: var(--text);
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
      font-size: 14px;
      width: 36%;
    }
    .pricing-table tbody td {
      padding: 18px 24px;
      text-align: center;
      border-bottom: 1px solid var(--border);
      border-right: 1px solid var(--border);
      color: var(--text-muted);
      font-size: 15px;
      vertical-align: middle;
    }
    .pricing-table tbody td:last-child { border-right: none; }
    .pricing-table tbody td.featured {
      background: var(--navy-50);
      color: var(--navy);
      font-weight: 700;
    }
    .pricing-table tbody td.price {
      font-size: 18px;
      font-weight: 900;
    }
    .pricing-table tbody td.price-main {
      font-size: 26px;
      padding: 22px 24px;
    }
    .pricing-table tbody td .price-unit {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-soft);
      margin-left: 2px;
    }
    .pricing-table tbody td.featured .price-unit {
      color: var(--navy);
      opacity: 0.7;
    }
    .pricing-table tbody td .price-strike {
      display: inline-block;
      color: var(--text-soft);
      text-decoration: line-through;
      font-size: 13px;
      font-weight: 500;
      margin-left: 8px;
    }
    .pricing-table tbody tr.row-best th {
      background: linear-gradient(90deg, #FFF8DC 0%, var(--surface) 100%);
      color: var(--navy-dark);
      font-weight: 700;
      position: relative;
    }
    .pricing-table tbody tr.row-best th::before {
      content: "★";
      color: var(--red);
      margin-right: 6px;
    }
    .pricing-table tbody tr.row-best td.featured {
      background: linear-gradient(180deg, #FFF8DC 0%, var(--navy-50) 100%);
    }
    .save-badge {
      display: inline-block;
      margin-top: 6px;
      padding: 5px 12px;
      background: #FFD93D;
      color: var(--navy-dark);
      font-size: 12px;
      font-weight: 900;
      border-radius: 999px;
      letter-spacing: 0.3px;
      white-space: nowrap;
      box-shadow: 0 2px 8px rgba(255, 217, 61, 0.5);
    }
    .save-badge::before {
      content: "💰 ";
    }
    .plus-tag {
      display: inline-block;
      margin-left: 6px;
      padding: 2px 8px;
      background: var(--red-50);
      color: var(--red-dark);
      font-size: 11px;
      font-weight: 700;
      border-radius: 4px;
      vertical-align: middle;
    }
    .pricing-highlight {
      max-width: 880px;
      margin: 0 auto 28px;
      padding: 18px 24px;
      background: linear-gradient(90deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: #fff;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-weight: 700;
      font-size: 15px;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }
    .pricing-highlight::before {
      content: "";
      position: absolute;
      top: 0; left: 0; bottom: 0;
      width: 6px;
      background: var(--red);
    }
    .pricing-highlight .big {
      color: #FFD93D;
      font-size: 22px;
      font-weight: 900;
      letter-spacing: 0.5px;
    }
    @media (max-width: 600px) {
      .pricing-highlight { font-size: 13px; flex-direction: column; gap: 4px; padding: 16px; }
      .pricing-highlight .big { font-size: 20px; }
    }
    .pricing-table tbody tr:last-child th,
    .pricing-table tbody tr:last-child td {
      border-bottom: none;
    }
    .pricing-note {
      max-width: 880px;
      margin: 0 auto 36px;
      font-size: 13px;
      color: var(--text-soft);
      text-align: left;
      line-height: 1.85;
    }
    .pricing-note ul {
      margin: 8px 0 0;
      padding-left: 20px;
    }
    .pricing-cta-wrap {
      text-align: center;
    }

    /* ---------- FAQ ---------- */
    .faq { background: var(--surface); }
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .faq-item summary {
      padding: 20px 24px;
      cursor: pointer;
      font-weight: 700;
      color: var(--navy);
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 16px;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: "+";
      color: var(--red);
      font-size: 24px;
      font-weight: 400;
      transition: transform 0.2s ease;
    }
    .faq-item[open] summary::after {
      transform: rotate(45deg);
    }
    .faq-item .answer {
      padding: 0 24px 20px;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.85;
    }

    /* ---------- Final CTA ---------- */
    .final-cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: #fff;
      text-align: center;
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(211, 31, 46, 0.25), transparent 70%);
      top: -200px;
      right: -100px;
      border-radius: 50%;
    }
    .final-cta::after {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
      bottom: -200px;
      left: -100px;
      border-radius: 50%;
    }
    .final-cta h2 {
      font-size: 36px;
      font-weight: 900;
      margin: 0 0 16px;
      line-height: 1.4;
      position: relative;
    }
    .final-cta p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.85);
      margin: 0 0 36px;
      position: relative;
    }
    .final-cta .btn {
      position: relative;
    }

    /* ---------- Footer ---------- */
    .footer {
      background: #0A1245;
      color: rgba(255, 255, 255, 0.7);
      padding: 48px 0 32px;
      font-size: 13px;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 32px;
    }
    .footer .logo {
      color: #fff;
      margin-bottom: 16px;
      background: #fff;
      padding: 8px 14px;
      border-radius: 10px;
      display: inline-flex;
    }
    .footer .logo-img {
      height: 36px;
    }
    .footer-desc { max-width: 380px; line-height: 1.8; }
    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
    }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
    }

    /* ---------- Contact ---------- */
    .contact {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: #fff;
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }
    .contact::before {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      background: radial-gradient(circle, rgba(211, 31, 46, 0.28), transparent 70%);
      top: -220px;
      right: -120px;
      border-radius: 50%;
      filter: blur(20px);
    }
    .contact::after {
      content: "";
      position: absolute;
      width: 460px;
      height: 460px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
      bottom: -220px;
      left: -120px;
      border-radius: 50%;
      filter: blur(20px);
    }
    .contact-inner {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
    }
    .contact h2 {
      text-align: center;
      font-size: 36px;
      font-weight: 900;
      color: #fff;
      margin: 0 0 16px;
      line-height: 1.4;
    }
    .contact-lead {
      text-align: center;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.85);
      margin: 0 auto 48px;
      max-width: 560px;
      line-height: 1.85;
    }
    .contact-form {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 44px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
      color: var(--text);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 18px;
    }
    .form-row.full { grid-template-columns: 1fr; }
    .form-field {
      display: flex;
      flex-direction: column;
    }
    .form-field label {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .form-field label .req {
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 3px;
      letter-spacing: 0.5px;
    }
    .form-field label .opt {
      background: var(--navy-50);
      color: var(--navy);
      font-size: 10px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 3px;
      letter-spacing: 0.5px;
    }
    .form-field input,
    .form-field textarea {
      padding: 12px 14px;
      border: 2px solid var(--border);
      border-radius: 8px;
      font-size: 14px;
      font-family: inherit;
      background: #fff;
      color: var(--text);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
      width: 100%;
    }
    .form-field input:focus,
    .form-field textarea:focus {
      outline: none;
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(31, 42, 142, 0.12);
    }
    .form-field textarea {
      min-height: 140px;
      resize: vertical;
      line-height: 1.7;
    }
    .form-actions {
      text-align: center;
      margin-top: 32px;
    }
    .form-actions .btn { min-width: 240px; }
    .form-actions .btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
      animation: none;
      box-shadow: none;
    }
    .form-note {
      font-size: 12px;
      color: var(--text-soft);
      text-align: center;
      margin-top: 18px;
      line-height: 1.7;
    }
    .thanks {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 80px 40px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
      text-align: center;
      display: none;
      color: var(--text);
    }
    .thanks.show { display: block; }
    .contact-form.hidden { display: none; }
    .contact.submitted .contact-header { display: none; }
    .contact.submitted { padding: 80px 0; }
    .thanks-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, #10B981, #059669);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 32px;
      font-weight: 900;
      box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
    }
    .thanks h3 {
      font-size: 24px;
      color: var(--navy);
      margin: 0 0 12px;
    }
    .thanks p {
      color: var(--text-muted);
      margin: 0;
      line-height: 1.85;
    }

    /* ---------- Legal pages (terms) ---------- */
    .legal-wrap {
      max-width: 840px;
      margin: 0 auto;
      padding: 48px 24px 96px;
    }
    .legal-body h1 {
      font-size: 28px;
      font-weight: 900;
      color: var(--navy);
      margin: 0 0 12px;
      line-height: 1.4;
    }
    .legal-body h2 {
      font-size: 18px;
      font-weight: 700;
      color: var(--navy);
      margin: 36px 0 12px;
      padding-bottom: 6px;
      border-bottom: 1px solid var(--border);
    }
    .legal-body p,
    .legal-body li {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.9;
    }
    .legal-body ol {
      padding-left: 24px;
      margin: 8px 0;
    }
    .legal-body ol ol {
      list-style-type: lower-alpha;
      margin: 4px 0;
    }
    .legal-body li { margin-bottom: 6px; }
    .legal-meta {
      color: var(--text-soft);
      font-size: 13px;
      margin-bottom: 24px;
    }
    .legal-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
      margin: 12px 0 8px;
    }
    .legal-table th,
    .legal-table td {
      border: 1px solid var(--border);
      padding: 10px 14px;
      text-align: left;
      vertical-align: top;
      color: var(--text-muted);
      line-height: 1.7;
    }
    .legal-table thead th {
      background: var(--navy-50);
      color: var(--navy);
      font-weight: 700;
      white-space: nowrap;
    }
    .legal-table td:first-child { white-space: nowrap; font-weight: 500; }

    /* ---------- Terms modal ---------- */
    .terms-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(10, 18, 69, 0.55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }
    .terms-modal-overlay.open { display: flex; }
    .terms-modal {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 760px;
      max-height: min(82vh, 880px);
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }
    .terms-modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      border-bottom: 1px solid var(--border);
      flex-shrink: 0;
    }
    .terms-modal-title {
      font-weight: 900;
      font-size: 16px;
      color: var(--navy);
    }
    .terms-modal-close {
      border: none;
      background: var(--surface);
      color: var(--text-muted);
      width: 32px;
      height: 32px;
      border-radius: 8px;
      font-size: 14px;
      cursor: pointer;
      line-height: 1;
    }
    .terms-modal-close:hover {
      background: var(--navy-50);
      color: var(--navy);
    }
    .terms-modal-body {
      overflow-y: auto;
      padding: 8px 28px 32px;
      overscroll-behavior: contain;
    }
    /* Reuse the legal typography inside the modal. */
    .terms-modal-body h1 {
      font-size: 22px;
      font-weight: 900;
      color: var(--navy);
      margin: 16px 0 12px;
      line-height: 1.4;
    }
    .terms-modal-body h2 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin: 28px 0 10px;
      padding-bottom: 6px;
      border-bottom: 1px solid var(--border);
    }
    .terms-modal-body p,
    .terms-modal-body li {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.85;
    }
    .terms-modal-body ol { padding-left: 22px; margin: 8px 0; }
    .terms-modal-body ol ol { list-style-type: lower-alpha; margin: 4px 0; }
    .terms-modal-body li { margin-bottom: 5px; }
    .terms-modal-body .legal-meta { font-size: 12px; }
    @media (max-width: 600px) {
      .terms-modal-overlay { padding: 12px; }
      .terms-modal { max-height: 90vh; }
      .terms-modal-body { padding: 4px 18px 24px; }
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 900px) {
      .hero { padding: 80px 0 96px; }
      .hero-inner { grid-template-columns: 1fr; gap: 56px; }
      .hero h1 { font-size: 42px; line-height: 1.25; letter-spacing: -0.5px; }
      .hero p.lead { font-size: 16px; }
      .hero-art {
        transform: none;
        animation: none;
      }
      .hero-art-wrap:hover .hero-art {
        transform: none;
      }
      .float-badge { display: none; }
      section { padding: 72px 0; }
      .section-title { font-size: 28px; }
      .problem-grid,
      .feature-grid,
      .benefit-grid,
      .screens-grid { grid-template-columns: 1fr; }
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .nav a:not(.nav-cta) { display: none; }
      .final-cta h2 { font-size: 28px; }
      .contact h2 { font-size: 26px; }
      .contact-form { padding: 32px 24px; }
    }
    @media (max-width: 600px) {
      .hero-cta .btn { width: 100%; }
      .footer-inner { flex-direction: column; }
      .form-row { grid-template-columns: 1fr; gap: 18px; }
      .contact-form { padding: 28px 20px; }
      .form-actions .btn { width: 100%; }
    }
