﻿
    :root {
      --ink: #17232b;
      --muted: #5a6a75;
      --line: #dfe7ec;
      --soft: #f5f8fa;
      --soft-blue: #eef7fb;
      --navy: #222d32;
      --teal: #1aa6b7;
      --blue: #3c8dbc;
      --yellow: #f8e16c;
      --green: #19a85b;
      --white: #ffffff;
      --shadow: 0 18px 50px rgba(23, 35, 43, 0.12);
      --radius: 8px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.55;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(12px);
    }
    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .logo img { width: 245px; height: auto; }
    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 15px;
    }
    .nav a:hover { color: var(--ink); }
    .header-actions { display: flex; align-items: center; gap: 10px; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 12px 18px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 12px 24px rgba(26, 166, 183, .2); }
    .btn-primary:hover { background: #158e9d; }
    .btn-secondary { background: var(--white); color: var(--ink); border-color: var(--line); }
    .btn-dark { background: var(--navy); color: var(--white); }
    .btn-light { background: var(--white); color: var(--teal); border-color: rgba(255,255,255,.3); }

    .section { padding: 84px 0; }
    .section-soft { background: var(--soft); }
    .section-blue { background: var(--soft-blue); }
    .section-dark { background: var(--navy); color: var(--white); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--blue);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      max-width: 780px;
      margin-bottom: 22px;
      font-size: clamp(38px, 6vw, 72px);
      line-height: 1.04;
      font-weight: 800;
    }
    h2 {
      max-width: 820px;
      margin-bottom: 16px;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.12;
      font-weight: 800;
    }
    h3 { font-size: 22px; line-height: 1.25; margin-bottom: 10px; }
    .lead {
      max-width: 780px;
      color: var(--muted);
      font-size: clamp(18px, 2.2vw, 24px);
      line-height: 1.38;
    }
    .copy { max-width: 780px; color: var(--muted); font-size: 18px; }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 70px 0 52px;
      background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 480px;
      gap: 44px;
      align-items: center;
    }
    .hero .subtitle {
      max-width: 760px;
      margin-bottom: 26px;
      color: var(--ink);
      font-size: clamp(22px, 3.2vw, 34px);
      line-height: 1.18;
      font-weight: 700;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 24px; }
    .hero-proof {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-top: 26px;
      max-width: 800px;
    }
    .proof-pill {
      min-height: 76px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      color: var(--muted);
      font-size: 14px;
    }
    .proof-pill strong { display: block; color: var(--ink); font-size: 18px; line-height: 1.2; }
    .hero-visual {
      position: relative;
      min-height: 520px;
    }
    .screen-stack {
      position: absolute;
      inset: 0;
    }
    .screen-card {
      position: absolute;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--shadow);
    }
    .screen-card.main { top: 46px; right: 0; width: 92%; }
    .screen-card.side { left: 0; bottom: 28px; width: 62%; }
    .screen-card.small { top: 0; left: 34px; width: 56%; }
    .screen-label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 12px;
      border-bottom: 1px solid var(--line);
      background: #fff;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }
    .screen-card.main img { height: 320px; width: 100%; object-fit: cover; object-position: top left; }
    .screen-card.side img { height: 210px; width: 100%; object-fit: cover; object-position: top left; }
    .screen-card.small img { height: 150px; width: 100%; object-fit: cover; object-position: top left; }

    .logo-strip {
      padding: 26px 0 38px;
      background: #fff;
      border-bottom: 1px solid var(--line);
    }
    .logo-strip-inner {
      display: grid;
      grid-template-columns: 180px repeat(3, 1fr);
      gap: 18px;
      align-items: center;
    }
    .trust-label { color: var(--muted); font-weight: 800; }
    .client-logo {
      min-height: 76px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
    }
    .client-logo img { max-height: 48px; width: auto; }

    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
    .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 34px; }
    .card {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
    }
    .card p { color: var(--muted); margin-bottom: 0; }
    .card.dark-card { background: #26343a; border-color: rgba(255,255,255,.1); color: var(--white); }
    .card.dark-card p { color: rgba(255,255,255,.72); }
    .num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      margin-bottom: 16px;
      border-radius: var(--radius);
      background: var(--teal);
      color: #fff;
      font-weight: 800;
    }

    .problem-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin: 28px 0 0;
      padding: 0;
      list-style: none;
    }
    .problem-list li {
      padding: 16px 18px;
      border-left: 4px solid var(--teal);
      border-radius: var(--radius);
      background: var(--white);
      color: var(--ink);
      box-shadow: 0 8px 22px rgba(23,35,43,.06);
    }

    .solution-band {
      display: grid;
      grid-template-columns: 1fr 390px;
      gap: 34px;
      align-items: center;
      padding: 34px;
      border-radius: var(--radius);
      background: var(--navy);
      color: var(--white);
    }
    .solution-band p { color: rgba(255,255,255,.8); font-size: 18px; }
    .solution-points { display: grid; gap: 10px; }
    .solution-point {
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.86);
    }

    .compare {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 34px;
    }
    .compare-col {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
    }
    .compare-head { padding: 18px; font-weight: 800; color: #fff; background: var(--navy); }
    .compare-head.du { background: var(--teal); }
    .compare ul { margin: 0; padding: 0; list-style: none; }
    .compare li { padding: 16px 18px; border-top: 1px solid var(--line); color: var(--muted); }

    .screen-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }
    .shot {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }
    .shot img { width: 100%; height: 230px; object-fit: cover; object-position: top left; }
    .shot figcaption { padding: 16px; color: var(--muted); font-size: 15px; }
    .shot strong { display: block; color: var(--ink); margin-bottom: 4px; }

    .module-section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 28px;
    }
    .module-count {
      min-width: 130px;
      padding: 18px;
      border-radius: var(--radius);
      background: var(--navy);
      color: var(--white);
      text-align: center;
      font-weight: 800;
    }
    .module-count strong { display: block; font-size: 44px; line-height: 1; color: var(--yellow); }
    .module-group {
      margin-top: 18px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
    }
    .module-group h3 { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
    .module-group h3 span { color: var(--teal); font-size: 14px; }
    .module-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 18px;
    }
    .module-item {
      min-height: 126px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fbfdfe;
    }
    .module-item strong { display: block; margin-bottom: 6px; }
    .module-item p { margin: 0; color: var(--muted); font-size: 14px; }

    .client-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
    .client-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
    .client-card .client-card-logo { height: 58px; display: flex; align-items: center; margin-bottom: 18px; }
    .client-card img { max-height: 56px; width: auto; }
    .client-card p { color: var(--muted); }
    .tagline { display: inline-flex; padding: 6px 9px; border-radius: var(--radius); background: var(--soft-blue); color: var(--blue); font-size: 13px; font-weight: 800; }

    .trust-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
    .trust-type { padding: 20px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
    .trust-type p { color: rgba(255,255,255,.7); margin-bottom: 0; }

    .media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
    .media-card { padding: 22px; border: 1px dashed #b7c8d2; border-radius: var(--radius); background: #fff; }
    .media-card .date { color: var(--teal); font-size: 13px; font-weight: 800; margin-bottom: 8px; }
    .media-card p { color: var(--muted); }

    .cta-panel {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 34px;
      padding: 36px;
      border-radius: var(--radius);
      background: var(--navy);
      color: #fff;
    }
    .cta-panel p, .cta-panel li { color: rgba(255,255,255,.78); }
    .cta-panel ul { margin: 24px 0 0; padding-left: 20px; }
    .form {
      display: grid;
      gap: 12px;
      padding: 20px;
      border-radius: var(--radius);
      background: #fff;
      color: var(--ink);
    }
    .field { display: grid; gap: 6px; font-size: 13px; color: var(--muted); font-weight: 700; }
    input, select, textarea {
      width: 100%;
      min-height: 44px;
      padding: 10px 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      font: inherit;
      color: var(--ink);
      background: #fff;
    }
    textarea { min-height: 90px; resize: vertical; }

    .faq { display: grid; gap: 10px; margin-top: 28px; }
    details {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 18px 20px;
    }
    summary { cursor: pointer; font-weight: 800; }
    details p { margin: 12px 0 0; color: var(--muted); }

    .footer { padding: 44px 0; background: #11191d; color: rgba(255,255,255,.72); }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
    .footer img { width: 260px; margin-bottom: 18px; }
    .footer a { display: block; margin-bottom: 8px; color: rgba(255,255,255,.72); }
    .footer a:hover { color: #fff; }

    @media (max-width: 1080px) {
      .hero-grid, .solution-band, .cta-panel { grid-template-columns: 1fr; }
      .hero-visual { min-height: 460px; }
      .logo-strip-inner { grid-template-columns: 1fr; }
      .grid-3, .screen-gallery, .client-grid, .media-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-types, .hero-proof { grid-template-columns: repeat(2, 1fr); }
      .module-grid { grid-template-columns: repeat(2, 1fr); }
      .nav { display: none; }
    }
    @media (max-width: 720px) {
      .wrap { width: min(100% - 24px, var(--max)); }
      .header-inner { min-height: 66px; }
      .logo img { width: 188px; }
      .header-actions .btn-secondary { display: none; }
      .hero { padding-top: 44px; }
      .hero-proof, .grid-2, .grid-3, .problem-list, .compare, .screen-gallery, .module-grid, .client-grid, .trust-types, .media-grid, .footer-grid { grid-template-columns: 1fr; }
      .hero-visual { min-height: 420px; }
      .screen-card.main { width: 100%; top: 52px; }
      .screen-card.side { width: 74%; }
      .screen-card.small { left: 0; width: 70%; }
      .section { padding: 58px 0; }
      .solution-band, .cta-panel { padding: 22px; }
      .module-section-head { display: block; }
      .module-count { margin-top: 18px; }
    }
  

    /* Design pass v2: closer to the current Digital University platform UI */
    :root {
      --ink: #171824;
      --muted: #66707d;
      --line: #e4e4ec;
      --soft: #f2f2f5;
      --soft-blue: #f2fbfd;
      --navy: #211b4b;
      --navy-2: #2c255d;
      --teal: #2bbdca;
      --blue: #6254d8;
      --yellow: #ffe99a;
      --green: #21ad5b;
      --orange: #ff7a1a;
      --purple: #9a55c7;
      --white: #ffffff;
      --shadow: 0 18px 48px rgba(26, 24, 48, 0.10);
      --panel-shadow: 0 24px 70px rgba(33, 27, 75, 0.16);
      --radius: 8px;
      --panel-radius: 28px;
      --max: 1180px;
    }

    body { background: var(--soft); color: var(--ink); }
    .site-header {
      background: rgba(255, 255, 255, 0.92);
      border-bottom-color: rgba(33, 27, 75, 0.08);
      box-shadow: 0 10px 30px rgba(33, 27, 75, 0.04);
    }
    .nav { color: #5e6573; }
    .nav a:hover { color: var(--navy); }
    .btn { border-radius: 8px; min-height: 46px; }
    .btn-primary { background: var(--orange); color: #fff; box-shadow: 0 16px 30px rgba(255, 122, 26, .22); }
    .btn-primary:hover { background: #ed6d12; }
    .btn-secondary { background: #fff; color: var(--navy); border-color: rgba(33, 27, 75, .18); }
    .btn-secondary:hover { border-color: var(--navy); }
    .btn-light { color: var(--navy); border-color: transparent; }
    .section { background: #fff; }
    .section-soft { background: var(--soft); }
    .section-blue { background: #f5fbfc; }
    .section-dark { background: #171824; }
    .eyebrow { color: var(--orange); letter-spacing: .04em; }
    h1, h2, h3 { color: var(--ink); letter-spacing: 0; }
    .section-dark h2, .section-dark h3, .platform-showcase h2, .platform-showcase h3, .cta-panel h2 { color: #fff; }
    .copy, .lead { color: var(--muted); }

    .hero {
      background: linear-gradient(180deg, #ffffff 0%, #f5f4f8 100%);
      padding-bottom: 66px;
    }
    .hero .subtitle { color: var(--navy); }
    .hero-proof { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .proof-pill {
      border-color: rgba(33, 27, 75, .12);
      box-shadow: 0 12px 34px rgba(33, 27, 75, .06);
    }
    .proof-pill strong { color: var(--navy); }
    .hero-visual { min-height: 548px; }
    .screen-card {
      border-radius: 22px;
      border-color: rgba(33, 27, 75, .11);
      box-shadow: var(--panel-shadow);
    }
    .screen-card.main { top: 48px; width: 96%; }
    .screen-card.side { width: 54%; bottom: 18px; }
    .screen-card.small { width: 52%; left: 16px; }
    .screen-label {
      background: var(--navy);
      color: #fff;
      border-bottom: 0;
      font-size: 12px;
    }
    .screen-card.main img { height: 340px; object-position: top left; }
    .screen-card.side img { height: 258px; object-fit: cover; object-position: top left; }
    .screen-card.small img { height: 154px; }

    .logo-strip {
      background: #fff;
      padding: 30px 0;
      border-bottom: 1px solid rgba(33, 27, 75, .08);
    }
    .logo-strip-inner { grid-template-columns: 190px repeat(3, 1fr); }
    .trust-label { color: var(--navy); }
    .client-logo {
      border-color: rgba(33, 27, 75, .12);
      box-shadow: 0 10px 28px rgba(33, 27, 75, .05);
    }

    .grid-3, .grid-2 { gap: 20px; }
    .card {
      border-color: rgba(33, 27, 75, .10);
      box-shadow: 0 14px 34px rgba(33, 27, 75, .05);
    }
    .card:hover { transform: translateY(-2px); transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 20px 44px rgba(33, 27, 75, .09); }
    .num { background: var(--navy); color: #fff; }

    .insight-board,
    .ops-split,
    .platform-showcase,
    .role-console,
    .screen-stage,
    .transition-layout,
    .client-proof-layout {
      display: grid;
      gap: 28px;
      align-items: center;
    }
    .insight-board { grid-template-columns: .95fr 1.05fr; }
    .insight-copy,
    .ops-copy,
    .role-intro {
      padding: 34px;
      border-radius: var(--panel-radius);
      background: #fff;
      border: 1px solid rgba(33, 27, 75, .08);
      box-shadow: var(--shadow);
    }
    .metric-line {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 28px;
    }
    .metric-line span {
      padding: 14px;
      border-radius: 8px;
      background: #f7f7fb;
      color: var(--navy);
      font-weight: 800;
      font-size: 14px;
    }
    .status-stack { display: grid; gap: 14px; }
    .status-tile {
      position: relative;
      min-height: 140px;
      padding: 22px 22px 22px 26px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(33, 27, 75, .08);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .status-tile:before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 8px;
      background: var(--teal);
    }
    .status-tile.purple:before { background: var(--purple); }
    .status-tile.green:before { background: var(--green); }
    .status-tile.orange:before { background: var(--orange); }
    .tile-number {
      display: inline-flex;
      min-width: 48px;
      height: 34px;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      border-radius: 8px;
      color: #fff;
      background: var(--navy);
      font-weight: 900;
    }
    .status-tile p { color: var(--muted); margin-bottom: 0; }

    .ops-split { grid-template-columns: .9fr 1.1fr; }
    .issue-table {
      overflow: hidden;
      border-radius: var(--panel-radius);
      background: #fff;
      border: 1px solid rgba(33, 27, 75, .10);
      box-shadow: var(--panel-shadow);
    }
    .issue-head, .issue-row {
      display: grid;
      grid-template-columns: 1.2fr .9fr auto;
      gap: 16px;
      align-items: center;
    }
    .issue-head {
      padding: 18px 22px;
      background: var(--navy);
      color: #fff;
      font-weight: 800;
    }
    .issue-row { padding: 18px 22px; border-top: 1px solid var(--line); }
    .issue-row strong { color: var(--ink); }
    .issue-row span { color: var(--muted); }
    .badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 5px 10px;
      border-radius: 8px;
      color: #fff;
      background: var(--purple);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }
    .badge.green { background: var(--green); }
    .badge.orange { background: var(--orange); }
    .badge.cyan { background: var(--teal); }

    .platform-showcase {
      grid-template-columns: .92fr 1.08fr;
      padding: 34px;
      border-radius: 32px;
      background: var(--navy);
      color: #fff;
      box-shadow: var(--panel-shadow);
    }
    .platform-showcase p { color: rgba(255,255,255,.78); font-size: 18px; }
    .platform-points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin: 24px 0;
    }
    .platform-points span {
      padding: 12px 14px;
      border-radius: 8px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.88);
      font-weight: 800;
      font-size: 14px;
    }
    .platform-preview {
      overflow: hidden;
      border-radius: 28px;
      background: #ededf0;
      border: 10px solid rgba(255,255,255,.12);
    }
    .platform-preview img { width: 100%; height: 520px; object-fit: cover; object-position: top left; }

    .process-ribbon {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 34px;
    }
    .process-step {
      position: relative;
      min-height: 230px;
      padding: 24px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(33, 27, 75, .10);
      box-shadow: var(--shadow);
    }

    .process-step:nth-child(3) { background: var(--navy); color: #fff; }
    .process-step:nth-child(3) h3, .process-step:nth-child(3) p { color: #fff; }
    .process-step p { color: var(--muted); }
    .step-index { display: inline-flex; margin-bottom: 18px; padding: 8px 12px; border-radius: 8px; background: #f5f4fa; color: var(--navy); font-weight: 900; }
    .process-step:nth-child(3) .step-index { background: var(--orange); color: #fff; }

    .role-console { grid-template-columns: .76fr 1.24fr; }
    .role-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .role-card {
      min-height: 172px;
      padding: 20px;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(33, 27, 75, .10);
      box-shadow: 0 14px 34px rgba(33, 27, 75, .05);
    }
    .role-card .badge { margin-bottom: 12px; }
    .role-card p { color: var(--muted); margin-bottom: 0; }

    .screen-stage { grid-template-columns: 1.16fr .84fr; align-items: stretch; }
    .featured-shot,
    .side-shot,
    .phone-shot {
      overflow: hidden;
      border-radius: 28px;
      background: #fff;
      border: 1px solid rgba(33, 27, 75, .10);
      box-shadow: var(--panel-shadow);
    }
    .featured-shot { padding: 18px; }
    .featured-shot img { width: 100%; height: 590px; object-fit: cover; object-position: top left; border-radius: 18px; }
    .shot-caption { padding: 18px 2px 2px; }
    .shot-caption p { color: var(--muted); margin-bottom: 0; }
    .side-shots { display: grid; gap: 18px; }
    .side-shot img { width: 100%; height: 258px; object-fit: cover; object-position: top left; }
    .side-shot .shot-caption { padding: 18px; }
    .phone-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
    .phone-shot img { width: 100%; height: 420px; object-fit: cover; object-position: top center; }

    .module-section-head { align-items: center; }
    .module-count { background: var(--navy); border-radius: 18px; }
    .module-count strong { color: var(--orange); }
    .module-group {
      border-color: rgba(33, 27, 75, .10);
      box-shadow: 0 14px 34px rgba(33, 27, 75, .05);
      overflow: hidden;
    }
    .module-group h3 {
      margin: -22px -22px 18px;
      padding: 18px 22px;
      background: #f8f8fb;
      border-bottom: 1px solid var(--line);
      color: var(--navy);
    }
    .module-group h3 span { color: var(--orange); }
    .module-item { background: #fff; border-color: rgba(33,27,75,.08); }
    .module-item strong { color: var(--navy); }

    .compare { align-items: stretch; }
    .compare-col { border-radius: 18px; box-shadow: var(--shadow); }
    .compare-head { background: #6d7280; }
    .compare-head.du { background: var(--navy); }

    .transition-risk-section {
      background:
        linear-gradient(135deg, rgba(43,189,202,.13) 0%, rgba(255,122,26,.06) 45%, rgba(245,251,252,1) 100%);
    }
    .transition-layout { grid-template-columns: .78fr 1.22fr; align-items: stretch; }
    .transition-copy-panel {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 100%;
      padding: 34px;
      border-radius: var(--panel-radius);
      background: var(--navy);
      color: #fff;
      overflow: hidden;
      box-shadow: var(--panel-shadow);
    }
    .transition-copy-panel:before {
      content: "";
      position: absolute;
      right: -90px;
      top: -90px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(255,122,26,.22);
    }
    .transition-copy-panel > * { position: relative; z-index: 1; }
    .transition-copy-panel h2 { color: #fff; }
    .transition-copy-panel .copy { color: rgba(255,255,255,.78); }
    .transition-proof-strip {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 34px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.16);
    }
    .transition-proof-chip {
      padding: 14px;
      border-radius: 14px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
    }
    .transition-proof-chip strong {
      display: block;
      margin-bottom: 3px;
      color: #fff;
      font-size: 18px;
      line-height: 1.1;
    }
    .transition-proof-chip span {
      color: rgba(255,255,255,.72);
      font-size: 13px;
      line-height: 1.35;
    }
    .transition-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .transition-card {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 240px;
      padding: 20px;
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(33, 27, 75, .10);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .transition-card:before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 5px;
      background: var(--orange);
    }
    .transition-card:nth-child(2):before { background: var(--teal); }
    .transition-card:nth-child(3):before { background: var(--purple); }
    .transition-card:nth-child(4):before { background: var(--green); }
    .transition-card-label {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 18px;
      padding: 7px 10px;
      border-radius: 999px;
      background: #f5f4fa;
      color: var(--navy);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .transition-card h3 {
      margin-bottom: 10px;
      color: var(--navy);
      font-size: 20px;
    }
    .transition-card p { color: var(--muted); }
    .transition-answer {
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px solid rgba(33,27,75,.10);
      font-size: 15px;
    }
    .transition-answer strong { color: var(--navy); }
    .timeline { display: grid; gap: 14px; margin-top: 30px; }
    .timeline-row { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start; }
    .timeline-row .num { margin: 0; background: var(--orange); }
    .timeline-row div:last-child { padding: 18px 20px; border-radius: 18px; background: #fff; border: 1px solid rgba(33,27,75,.10); box-shadow: var(--shadow); }
    .timeline-row p { color: var(--muted); margin-bottom: 0; }

    .implementation-steps-section { background: #fff; }
    .implementation-steps-wrap { max-width: 1220px; }
    .implementation-steps-head {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
      gap: 36px;
      align-items: end;
      margin-bottom: 30px;
    }
    .implementation-steps-head h2 {
      max-width: 720px;
      margin-bottom: 0;
    }
    .implementation-steps-head .copy { margin: 0 0 8px; }
    .implementation-steps-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      align-items: stretch;
    }
    .implementation-step-card {
      display: flex;
      flex-direction: column;
      min-height: 420px;
      padding: 12px 12px 20px;
      border: 1px solid rgba(33,27,75,.10);
      border-radius: 22px;
      background: #f5f8fb;
      box-shadow: 0 18px 44px rgba(33,27,75,.08);
      overflow: hidden;
    }
    .implementation-step-visual {
      aspect-ratio: 1 / .86;
      margin: 0 0 18px;
      border-radius: 16px;
      background: linear-gradient(180deg, #fff 0%, #eef3f7 100%);
      border: 1px solid rgba(33,27,75,.08);
      overflow: hidden;
    }
    .implementation-step-visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(1.03) contrast(1.02);
    }
    .implementation-step-content {
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 12px;
      padding: 0 6px;
    }
    .implementation-step-number {
      display: inline-grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 50%;
      background: var(--orange);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(255,122,26,.22);
    }
    .implementation-step-card h3 {
      margin: 0;
      font-size: 19px;
      line-height: 1.15;
    }
    .implementation-step-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.45;
    }

    .client-proof-layout { grid-template-columns: .82fr 1.18fr; align-items: start; }
    .client-grid { margin-top: 0; }
    .client-card { border-radius: 18px; box-shadow: var(--shadow); }
    .tagline { background: #fff3e9; color: #bf5308; }
    .trust-types { gap: 18px; }
    .trust-type { border-radius: 18px; background: rgba(255,255,255,.07); }
    .media-card { border-style: solid; border-color: rgba(33,27,75,.10); border-radius: 18px; box-shadow: var(--shadow); }
    .media-card .date { color: var(--orange); }
    .cta-panel {
      border-radius: 32px;
      background: linear-gradient(135deg, #211b4b 0%, #171824 76%);
      box-shadow: var(--panel-shadow);
    }
    .form { border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.18); }
    input, select, textarea { border-color: #dadbe7; }
    input:focus, select:focus, textarea:focus { outline: 2px solid rgba(255,122,26,.28); border-color: var(--orange); }
    details { border-radius: 18px; box-shadow: 0 12px 28px rgba(33,27,75,.04); }
    .footer { background: var(--navy); }

    @media (max-width: 1080px) {
      .insight-board, .ops-split, .platform-showcase, .role-console, .screen-stage, .transition-layout, .client-proof-layout { grid-template-columns: 1fr; }
      .implementation-steps-head { grid-template-columns: 1fr; gap: 18px; }
      .implementation-steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .platform-preview img { height: 420px; }
      .featured-shot img { height: 440px; }
      .process-ribbon { grid-template-columns: 1fr; }
      .process-step:nth-child(2) { transform: none; }
    }
    @media (max-width: 720px) {
      .hero-proof, .metric-line, .platform-points, .role-grid, .phone-strip { grid-template-columns: 1fr; }
      .transition-cards, .transition-proof-strip { grid-template-columns: 1fr; }
      .transition-copy-panel { padding: 24px; border-radius: 22px; }
      .implementation-steps-grid { grid-template-columns: 1fr; }
      .implementation-step-card { min-height: 0; }
      .implementation-step-visual { aspect-ratio: 16 / 9; }
      .insight-copy, .ops-copy, .platform-showcase, .role-intro, .cta-panel { padding: 22px; border-radius: 22px; }
      .issue-head, .issue-row { grid-template-columns: 1fr; gap: 8px; }
      .issue-head span:nth-child(2), .issue-head span:nth-child(3) { display: none; }
      .platform-preview img { height: 320px; }
      .featured-shot img, .phone-shot img { height: 360px; }
      .side-shot img { height: 220px; }
      .screen-card { border-radius: 16px; }
      .screen-card.side { width: 68%; }
    }

  

    /* Hero tuning after visual check */
    .hero { padding: 54px 0 48px; }
    h1 { max-width: 720px; font-size: clamp(38px, 5vw, 62px); line-height: 1.06; }
    .hero .subtitle { margin-bottom: 18px; font-size: clamp(21px, 2.6vw, 29px); }
    .hero .lead { font-size: clamp(17px, 1.6vw, 20px); }
    .hero-actions { margin: 24px 0 18px; }
    .hero-proof { margin-top: 20px; }
    .hero-grid { grid-template-columns: minmax(0, 1.05fr) 500px; gap: 32px; }
    .hero-visual { min-height: 500px; }
    .screen-card.main { top: 34px; }
    .screen-card.main img { height: 310px; }
    .screen-card.side { bottom: 6px; }
    .screen-card.side img { height: 238px; }
    @media (max-width: 1080px) { .hero-grid { grid-template-columns: 1fr; } }
    @media (max-width: 720px) {
      .hero { padding-top: 40px; }
      h1 { font-size: clamp(36px, 12vw, 48px); }
      .hero-visual { min-height: 390px; }
      .screen-card.main img { height: 260px; }
      .screen-card.side img { height: 190px; }
    }

  

    /* Hero final balance */
    .hero { padding: 42px 0 36px; }
    .hero-grid { grid-template-columns: minmax(0, 1fr) 440px; gap: 28px; }
    h1 { max-width: 720px; font-size: clamp(38px, 4.5vw, 56px); line-height: 1.05; margin-bottom: 18px; }
    .hero .subtitle { font-size: clamp(20px, 2.3vw, 27px); margin-bottom: 14px; }
    .hero .lead { max-width: 690px; font-size: 18px; line-height: 1.42; }
    .hero-actions { margin: 20px 0 14px; }
    .hero-proof { gap: 8px; margin-top: 16px; }
    .proof-pill { min-height: 64px; padding: 10px 12px; font-size: 13px; }
    .proof-pill strong { font-size: 17px; }
    .hero-visual { min-height: 430px; }
    .screen-card.main { top: 24px; }
    .screen-card.main img { height: 270px; }
    .screen-card.side { bottom: 0; width: 56%; }
    .screen-card.side img { height: 205px; }
    .screen-card.small img { height: 130px; }
    @media (max-width: 1080px) { .hero-grid { grid-template-columns: 1fr; } }

  

    /* Mobile overflow and compact proof fixes */
    html, body { overflow-x: hidden; }
    .hero-grid > *, .platform-showcase > *, .cta-panel > *, .screen-stage > *, .role-console > *, .client-proof-layout > * { min-width: 0; }
    @media (max-width: 720px) {
      .header-actions .btn-primary { padding-inline: 14px; font-size: 14px; }
      .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .proof-pill { min-height: 70px; }
      .hero-visual { min-height: 315px; margin-top: 12px; overflow: hidden; }
      .screen-stack { overflow: hidden; }
      .screen-card { box-shadow: 0 12px 32px rgba(33, 27, 75, .14); }
      .screen-card.main { left: 0; right: auto; width: 96%; top: 20px; }
      .screen-card.main img { height: 205px; }
      .screen-card.small { left: 0; width: 58%; }
      .screen-card.small img { height: 96px; }
      .screen-card.side { left: auto; right: 0; width: 52%; bottom: 2px; }
      .screen-card.side img { height: 148px; }
      .screen-label { font-size: 10px; padding: 8px 9px; }
      .cta-panel { overflow: hidden; }
      .cta-panel ul { padding-left: 18px; }
      .form { width: 100%; }
    }

  

    /* Hero visual v3: cleaner proof-free layout */
    .hero-grid { grid-template-columns: minmax(0, 1fr) 500px; align-items: center; }
    .hero-actions { margin-bottom: 0; }
    .hero-device-visual { min-height: 470px; }
    .device-scene {
      position: relative;
      width: 100%;
      height: 470px;
      isolation: isolate;
    }
    .device-scene::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 2%;
      bottom: 22px;
      height: 230px;
      border-radius: 32px;
      background: linear-gradient(135deg, #211b4b 0%, #15142b 100%);
      box-shadow: 0 28px 80px rgba(33, 27, 75, .24);
      z-index: 0;
    }
    .device-scene::after {
      content: "";
      position: absolute;
      inset: 18px 0 0 0;
      background: radial-gradient(circle at 54% 50%, rgba(43, 189, 202, .18), transparent 44%), radial-gradient(circle at 70% 38%, rgba(255, 122, 26, .16), transparent 32%);
      filter: blur(4px);
      z-index: -1;
    }
    .scene-word {
      position: absolute;
      left: 13%;
      right: 4%;
      bottom: 95px;
      z-index: 1;
      color: rgba(255,255,255,.12);
      font-size: 58px;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      pointer-events: none;
    }
    .desktop-device {
      position: absolute;
      right: 0;
      top: 72px;
      width: 82%;
      height: 278px;
      margin: 0;
      overflow: hidden;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(33, 27, 75, .12);
      box-shadow: 0 28px 70px rgba(33, 27, 75, .18);
      z-index: 2;
    }
    .device-bar {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      background: var(--navy);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
    }
    .desktop-device img {
      width: 100%;
      height: calc(100% - 45px);
      object-fit: cover;
      object-position: top left;
    }
    .phone-device {
      position: absolute;
      left: 28px;
      top: 30px;
      width: 205px;
      height: 380px;
      margin: 0;
      padding: 10px;
      border-radius: 34px;
      background: #fff;
      border: 1px solid rgba(23,24,36,.20);
      box-shadow: 0 32px 78px rgba(23, 24, 36, .28);
      transform: rotate(-7deg);
      z-index: 4;
    }
    .phone-device::before {
      content: "";
      position: absolute;
      inset: 5px;
      border-radius: 30px;
      border: 1px solid rgba(33,27,75,.10);
      pointer-events: none;
      z-index: 2;
    }
    .phone-frame-top {
      position: absolute;
      top: 15px;
      left: 50%;
      width: 58px;
      height: 15px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: #11131e;
      z-index: 3;
    }
    .phone-device img {
      width: 100%;
      height: 100%;
      border-radius: 26px;
      object-fit: cover;
      object-position: top center;
    }
    .hero-float-card,
    .hero-float-pill {
      position: absolute;
      z-index: 5;
      border-radius: 14px;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(33,27,75,.10);
      box-shadow: 0 18px 46px rgba(33,27,75,.16);
      backdrop-filter: blur(10px);
      color: var(--navy);
    }
    .hero-float-card {
      min-width: 146px;
      padding: 12px 14px;
    }
    .hero-float-card strong { display: block; font-size: 14px; line-height: 1.1; }
    .hero-float-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 700; }
    .float-programs { left: 104px; top: 8px; }
    .float-edebo { right: 22px; top: 28px; }
    .hero-float-pill {
      right: 32px;
      bottom: 54px;
      padding: 10px 14px;
      background: var(--orange);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 18px 46px rgba(255,122,26,.22);
    }
    @media (max-width: 1080px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-device-visual { min-height: 450px; }
      .device-scene { max-width: 620px; margin: 0 auto; }
    }
    @media (max-width: 720px) {
      .hero-device-visual { min-height: 350px; margin-top: 20px; }
      .device-scene { height: 350px; }
      .device-scene::before { left: 0; right: 0; bottom: 16px; height: 170px; border-radius: 24px; }
      .scene-word { left: 8%; bottom: 78px; font-size: 36px; }
      .desktop-device { right: 0; top: 76px; width: 86%; height: 190px; border-radius: 18px; }
      .device-bar { padding: 9px 10px; font-size: 11px; }
      .desktop-device img { height: calc(100% - 36px); }
      .phone-device { left: 6px; top: 22px; width: 145px; height: 270px; padding: 7px; border-radius: 26px; }
      .phone-device img { border-radius: 20px; }
      .phone-device::before { border-radius: 23px; }
      .phone-frame-top { width: 42px; height: 10px; top: 11px; }
      .hero-float-card { min-width: 118px; padding: 9px 10px; border-radius: 12px; }
      .hero-float-card strong { font-size: 12px; }
      .hero-float-card span { font-size: 10px; }
      .float-programs { left: 70px; top: 0; }
      .float-edebo { right: 6px; top: 20px; }
      .hero-float-pill { right: 12px; bottom: 40px; padding: 8px 10px; font-size: 12px; }
    }

  
    /* Problem block v2: growth blockers */
    .problem-growth-section {
      position: relative;
      overflow: hidden;
      background: #111118;
      color: #fff;
    }
    .problem-growth-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 14% 18%, rgba(255, 91, 69, .18), transparent 34%),
        radial-gradient(circle at 86% 36%, rgba(255, 122, 26, .14), transparent 30%);
      pointer-events: none;
    }
    .problem-growth-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 30px;
      align-items: stretch;
    }
    .problem-growth-section h2,
    .problem-growth-section h3 { color: #fff; }
    .problem-growth-section .copy { color: rgba(255,255,255,.68); }
    .danger-eyebrow { color: #ff6b4a; }
    .problem-copy {
      padding: 34px;
      border-radius: 28px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: 0 28px 78px rgba(0,0,0,.24);
    }
    .blocker-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
    }
    .blocker-card {
      min-height: 190px;
      padding: 20px;
      border-radius: 18px;
      background: #fff0ee;
      border: 1px solid rgba(255, 91, 69, .38);
      box-shadow: 0 14px 0 rgba(255, 91, 69, .22), 0 26px 54px rgba(0,0,0,.20);
      color: #22151a;
    }
    .blocker-card span {
      display: inline-flex;
      min-width: 34px;
      height: 28px;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      border-radius: 8px;
      background: #ff5b45;
      color: #fff;
      font-weight: 900;
      font-size: 13px;
    }
    .blocker-card h3 {
      color: #bd432d;
      font-size: 24px;
      margin-bottom: 14px;
    }
    .blocker-card p { color: #37272a; margin-bottom: 0; }
    .pain-panel {
      padding: 28px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 28px 78px rgba(0,0,0,.24);
    }
    .pain-panel-head {
      padding: 6px 0 24px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .pain-panel-head span {
      display: inline-flex;
      margin-bottom: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(255,91,69,.14);
      color: #ff8068;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }
    .pain-panel-head strong {
      display: block;
      max-width: 520px;
      color: #fff;
      font-size: 34px;
      line-height: 1.12;
    }
    .cost-list { display: grid; gap: 16px; margin-top: 24px; }
    .cost-item {
      position: relative;
      padding: 20px 20px 20px 58px;
      border-radius: 18px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.10);
    }
    .cost-item span {
      position: absolute;
      left: 20px;
      top: 24px;
      width: 18px;
      height: 18px;
      border-radius: 6px;
      background: #ff5b45;
      box-shadow: 0 0 0 8px rgba(255,91,69,.12);
    }
    .cost-item h3 { font-size: 22px; margin-bottom: 10px; }
    .cost-item p { margin-bottom: 0; color: rgba(255,255,255,.66); }
    @media (max-width: 1080px) {
      .problem-growth-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 720px) {
      .problem-copy,
      .pain-panel { padding: 22px; border-radius: 22px; }
      .blocker-grid { grid-template-columns: 1fr; }
      .blocker-card { min-height: auto; }
      .pain-panel-head strong { font-size: 28px; }
      .cost-item { padding: 18px 18px 18px 52px; }
    }
  
    /* Modules accordion v2 */
    .modules-accordion-section { background: #f2f2f5; }
    .modules-accordion-wrap { max-width: 1000px; }
    .modules-accordion-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 130px;
      gap: 28px;
      align-items: center;
      margin-bottom: 34px;
    }
    .modules-accordion-head h2 { max-width: 760px; }
    .module-accordion-list { display: grid; gap: 14px; }
    .module-accordion {
      overflow: hidden;
      border-radius: 14px;
      background: #fff;
      border: 1px solid rgba(33, 27, 75, .10);
      box-shadow: 0 16px 42px rgba(33, 27, 75, .06);
    }
    .module-accordion summary {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto 34px;
      gap: 16px;
      align-items: center;
      min-height: 74px;
      padding: 20px 24px;
      cursor: pointer;
      list-style: none;
      color: var(--navy);
      font-weight: 900;
      font-size: 22px;
    }
    .module-accordion summary::-webkit-details-marker { display: none; }
    .module-accordion summary em {
      color: #98a0ad;
      font-style: normal;
      font-size: 15px;
      font-weight: 900;
      white-space: nowrap;
    }
    .module-accordion summary i {
      position: relative;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #eaf5ff;
    }
    .module-accordion summary i::before,
    .module-accordion summary i::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 12px;
      height: 2px;
      border-radius: 999px;
      background: var(--blue);
      transform: translate(-50%, -50%);
    }
    .module-accordion summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
    .module-accordion[open] summary { border-bottom: 1px solid var(--line); }
    .module-accordion[open] summary i { background: #fff3e9; }
    .module-accordion[open] summary i::before { background: var(--orange); }
    .module-accordion[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); background: var(--orange); }
    .module-accordion-body {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      column-gap: 32px;
      padding: 8px 24px 24px;
    }
    .module-row {
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }
    .module-row:nth-last-child(-n+2) { border-bottom: 0; }
    .module-row h3 {
      margin-bottom: 8px;
      color: var(--ink);
      font-size: 17px;
      line-height: 1.25;
    }
    .module-row p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.55;
    }
    @media (max-width: 720px) {
      .modules-accordion-head { grid-template-columns: 1fr; }
      .modules-accordion-head .module-count { width: 130px; }
      .module-accordion summary {
        grid-template-columns: minmax(0, 1fr) auto 30px;
        padding: 18px;
        font-size: 19px;
      }
      .module-accordion summary em { font-size: 13px; }
      .module-accordion-body { grid-template-columns: 1fr; padding: 4px 18px 18px; }
      .module-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
      .module-row:last-child { border-bottom: 0; }
    }
  
    /* Visual comparison v2 */
    .comparison-showcase-section { background: #fff; }
    .comparison-showcase-wrap { max-width: 1040px; }
    .comparison-headline {
      max-width: 780px;
      margin-bottom: 34px;
    }
    .comparison-visual {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: stretch;
    }
    .comparison-panel {
      min-height: 560px;
      padding: 26px;
      border-radius: 24px;
      border: 1px solid rgba(33,27,75,.10);
      box-shadow: 0 24px 70px rgba(33,27,75,.10);
      overflow: hidden;
    }
    .old-way { background: #f6f6f8; }
    .new-way {
      background: linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
      border-color: rgba(33, 173, 91, .20);
    }
    .comparison-panel-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: start;
      margin-bottom: 24px;
    }
    .comparison-panel-top span {
      color: var(--ink);
      font-size: 22px;
      font-weight: 900;
      line-height: 1.15;
    }
    .comparison-panel-top strong {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: 999px;
      font-size: 12px;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .old-way .comparison-panel-top strong { background: #eceef2; color: #7a818c; }
    .new-way .comparison-panel-top strong { background: #e9f9f0; color: #16904d; }
    .tool-chaos {
      position: relative;
      min-height: 190px;
      margin-bottom: 20px;
      border-radius: 20px;
      background: #ececf0;
      border: 1px solid #dedfe6;
    }
    .tool-chaos span {
      position: absolute;
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: #fff;
      color: #777f8b;
      box-shadow: 0 10px 24px rgba(33,27,75,.10);
      font-size: 13px;
      font-weight: 800;
      transform: rotate(-7deg);
    }
    .tool-chaos span:nth-child(1) { left: 10%; top: 22%; }
    .tool-chaos span:nth-child(2) { right: 16%; top: 12%; transform: rotate(8deg); }
    .tool-chaos span:nth-child(3) { left: 26%; top: 52%; transform: rotate(4deg); }
    .tool-chaos span:nth-child(4) { right: 8%; top: 48%; transform: rotate(-10deg); }
    .tool-chaos span:nth-child(5) { left: 8%; bottom: 12%; transform: rotate(6deg); }
    .tool-chaos span:nth-child(6) { right: 18%; bottom: 10%; }
    .single-platform {
      min-height: 190px;
      margin-bottom: 20px;
      border-radius: 20px;
      background: linear-gradient(135deg, #211b4b 0%, #171824 100%);
      border: 1px solid rgba(33,27,75,.14);
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 18px;
      align-items: center;
      padding: 26px;
      color: #fff;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }
    .platform-icon {
      display: grid;
      place-items: center;
      width: 76px;
      height: 76px;
      border-radius: 20px;
      background: var(--orange);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 18px 44px rgba(255,122,26,.30);
    }
    .single-platform strong { display: block; color: #fff; font-size: 24px; line-height: 1.15; }
    .single-platform p { margin: 6px 0 0; color: rgba(255,255,255,.68); }
    .comparison-list {
      display: grid;
      gap: 0;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .comparison-list li {
      position: relative;
      padding: 16px 0 16px 34px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      line-height: 1.45;
    }
    .comparison-list li::before {
      position: absolute;
      left: 0;
      top: 17px;
      display: grid;
      place-items: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      color: #fff;
      font-size: 13px;
      font-weight: 900;
    }
    .negative-list li::before { content: "×"; background: #ff5b45; }
    .positive-list li::before { content: "✓"; background: #21ad5b; }
    .comparison-vs {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 2;
      transform: translate(-50%, -50%);
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #fff;
      color: var(--navy);
      border: 1px solid rgba(33,27,75,.10);
      box-shadow: 0 18px 46px rgba(33,27,75,.16);
      font-weight: 900;
    }
    @media (max-width: 900px) {
      .comparison-visual { grid-template-columns: 1fr; }
      .comparison-panel { min-height: auto; }
      .comparison-vs { position: relative; left: auto; top: auto; transform: none; margin: -6px auto; }
    }
    @media (max-width: 720px) {
      .comparison-panel { padding: 20px; border-radius: 20px; }
      .comparison-panel-top { display: grid; }
      .comparison-panel-top strong { width: fit-content; white-space: normal; }
      .tool-chaos, .single-platform { min-height: 160px; }
      .single-platform { grid-template-columns: 1fr; }
    }
  

/* WordPress full-screen template fixes */
html, body.du-b2b-landing-page { margin: 0; padding: 0; width: 100%; min-height: 100%; }
body.du-b2b-landing-page { overflow-x: hidden; background: #fff; }
body.du-b2b-landing-page.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.du-b2b-landing-page.admin-bar .site-header { top: 46px; } }
#wpadminbar { position: fixed; }

/* Full-width header layout inside the plugin template */
body.du-b2b-landing-page .site-header {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

body.du-b2b-landing-page .site-header .wrap.header-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(20px, 4vw, 72px);
  padding-right: clamp(20px, 4vw, 72px);
}

body.du-b2b-landing-page .site-header .logo {
  flex: 0 0 auto;
}

body.du-b2b-landing-page .site-header .nav {
  flex: 1 1 auto;
  justify-content: center;
}

body.du-b2b-landing-page .site-header .header-actions {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  body.du-b2b-landing-page .site-header .wrap.header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Mobile navigation and layout fixes v1.0.3 */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(33, 27, 75, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-demo-link {
  display: none;
}

@media (max-width: 1080px) {
  body.du-b2b-landing-page .site-header {
    overflow: visible;
  }

  body.du-b2b-landing-page .site-header .wrap.header-inner {
    position: relative;
    gap: 10px;
  }

  body.du-b2b-landing-page .site-header .menu-toggle {
    display: grid;
    flex: 0 0 auto;
    order: 3;
  }

  body.du-b2b-landing-page .site-header .header-actions {
    margin-left: auto;
    order: 2;
  }

  body.du-b2b-landing-page .site-header .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    z-index: 40;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 10px;
    border: 1px solid rgba(33, 27, 75, .12);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(33, 27, 75, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }

  body.du-b2b-landing-page .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.du-b2b-landing-page .site-header .nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--navy);
    font-weight: 800;
  }

  body.du-b2b-landing-page .site-header .nav a:hover {
    background: #f5f4fa;
  }

  body.du-b2b-landing-page .site-header .nav .nav-demo-link {
    display: block;
    background: var(--orange);
    color: #11121b;
  }
}

@media (max-width: 720px) {
  body.du-b2b-landing-page .site-header .logo img {
    width: clamp(150px, 46vw, 188px);
  }

  body.du-b2b-landing-page .site-header .header-actions {
    display: none;
  }

  .logo-strip {
    padding: 20px 0 24px;
  }

  .logo-strip-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-label {
    font-size: 15px;
  }

  .client-logo {
    min-height: 74px;
    width: 100%;
    padding: 14px 18px;
  }

  .client-logo img {
    max-height: 46px;
  }

  #demo .wrap {
    width: min(100% - 20px, var(--max));
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    border-radius: 24px;
    overflow: visible;
  }

  .cta-panel > *,
  .form,
  .field,
  .field input,
  .field select,
  .field textarea {
    min-width: 0;
    max-width: 100%;
  }

  .form {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
  }

  .form .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    line-height: 1.22;
    text-align: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  .du-lead-consent {
    min-width: 0;
    max-width: 100%;
  }

  .du-lead-consent input[type="checkbox"] {
    flex: 0 0 auto;
  }

  .du-lead-consent span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

