:root {
      --ink: #112239;
      --ink-2: #17314f;
      --green: #087b68;
      --green-2: #0b9a7f;
      --mint: #e9f7f2;
      --mint-2: #f6fbf8;
      --gold: #d5a940;
      --gold-2: #f4d27d;
      --paper: #ffffff;
      --line: #dbe8e2;
      --text: #152033;
      --muted: #647486;
      --danger: #a24836;
      --shadow: 0 18px 46px rgba(14, 44, 34, .14);
      --radius: 8px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      font-family: "Segoe UI", Tahoma, Arial, sans-serif;
      background: var(--paper);
      color: var(--text);
      line-height: 1.8;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 4px 12px;
      border: 1px solid rgba(8,123,104,.2);
      background: rgba(8,123,104,.08);
      color: var(--green);
      font-weight: 800;
      font-size: 13px;
      border-radius: 999px;
    }
    .section-head {
      display: grid;
      grid-template-columns: minmax(240px, 520px) minmax(240px, 520px);
      gap: 28px;
      align-items: end;
      margin-bottom: 32px;
    }
    .section-head h2 {
      margin: 12px 0 0;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.25;
      letter-spacing: 0;
      color: var(--ink);
    }
    .section-head p { margin: 0; color: var(--muted); font-size: 18px; }
    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      min-height: 46px;
      padding: 10px 18px;
      border-radius: 8px;
      border: 1px solid transparent;
      font-weight: 900;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn.primary { background: var(--gold); color: #172033; box-shadow: 0 12px 28px rgba(213,169,64,.28); }
    .btn.secondary { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); color: #fff; }
    .btn.ghost { background: var(--mint); color: var(--green); border-color: rgba(8,123,104,.12); }
    .mobile-sticky-cta { display: none; }
    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 20;
      background: rgba(17,34,57,.8);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }
    .nav-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-weight: 900; }
    .brand img { width: 108px; height: 42px; object-fit: contain; background: rgba(255,255,255,.95); border-radius: 8px; padding: 4px 8px; }
    .brand span { font-size: 18px; }
    .nav-links { display: flex; align-items: center; gap: 22px; color: rgba(255,255,255,.82); font-size: 14px; }
    .nav-links a:hover { color: #fff; }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .guide-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #fff;
      font-weight: 900;
    }

    .hero {
      position: relative;
      min-height: 88vh;
      padding: 126px 0 86px;
      isolation: isolate;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(17,34,57,.95) 0%, rgba(17,34,57,.84) 42%, rgba(8,123,104,.66) 100%),
        radial-gradient(circle at 14% 78%, rgba(244,210,125,.18), transparent 34%),
        linear-gradient(135deg, #112239, #087b68);
    }
    .hero-scene {
      position: absolute;
      inset: 0;
      z-index: -1;
      opacity: .98;
    }
    .hero-logo-mark {
      position: absolute;
      left: 5vw;
      top: 118px;
      width: min(40vw, 620px);
      opacity: .1;
      filter: saturate(1.1);
    }
    .dashboard-scene {
      position: absolute;
      left: min(3vw, 48px);
      bottom: 56px;
      width: min(49vw, 680px);
      min-height: 390px;
      transform: rotate(-1.5deg);
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.92);
      box-shadow: 0 30px 90px rgba(0,0,0,.28);
      border-radius: 8px;
      padding: 20px;
      color: var(--text);
    }
    .scene-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
    .scene-title { font-weight: 900; color: var(--ink); }
    .scene-search { width: 44%; height: 36px; border-radius: 8px; background: #f2f7f5; border: 1px solid var(--line); }
    .scene-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
    .scene-card { min-height: 86px; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 12px; }
    .scene-card small { display: block; color: var(--muted); font-weight: 700; margin-bottom: 8px; }
    .scene-card strong { font-size: 24px; color: var(--ink); }
    .scene-table { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; }
    .scene-row { display: grid; grid-template-columns: 1.2fr .8fr .8fr .8fr; gap: 10px; padding: 12px; border-bottom: 1px solid var(--line); font-size: 13px; }
    .scene-row:first-child { background: #f4faf7; color: var(--green); font-weight: 900; }
    .scene-row:last-child { border-bottom: 0; }
    .status { display: inline-flex; align-items: center; justify-content: center; min-width: 74px; border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 900; }
    .status.good { background: #dff6ef; color: #05765f; }
    .status.warn { background: #fff1d5; color: #966712; }
    .hero-copy { width: min(620px, 100%); position: relative; z-index: 2; padding-top: 30px; }
    .hero h1 {
      margin: 18px 0 18px;
      font-size: clamp(40px, 5.2vw, 64px);
      line-height: 1.14;
      letter-spacing: 0;
    }
    .hero h1 span { color: var(--gold-2); }
    .hero p { margin: 0; max-width: 540px; color: rgba(255,255,255,.84); font-size: 18px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .hero-proof { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .proof-pill {
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.86);
      border-radius: 8px;
      padding: 9px 12px;
      font-size: 14px;
      font-weight: 700;
    }

    .trust-strip {
      margin-top: -38px;
      position: relative;
      z-index: 4;
    }
    .trust-box {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--line);
      box-shadow: var(--shadow);
    }
    .trust-item { background: #fff; padding: 22px; }
    .trust-item strong { display: block; color: var(--ink); font-size: 18px; }
    .trust-item span { color: var(--muted); font-size: 14px; }
    .trust-item.highlight strong { color: var(--green); }

    section { padding: 82px 0; }
    .soft { background: var(--mint-2); }
    .split {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: start;
    }
    .panel {
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 12px 32px rgba(17,34,57,.07);
    }
    .problem-list { display: grid; gap: 12px; }
    .problem-item {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      padding: 16px;
      border: 1px solid var(--line);
      background: #fff;
      border-radius: 8px;
    }
    .problem-item b { color: var(--ink); }
    .problem-item p { margin: 4px 0 0; color: var(--muted); }
    .mark {
      width: 34px; height: 34px;
      border-radius: 8px;
      display: grid; place-items: center;
      font-weight: 900;
      background: #f8e7df;
      color: var(--danger);
    }
    .mark.ok { background: var(--mint); color: var(--green); }
    .solution-board { padding: 22px; }
    .board-line { display: grid; grid-template-columns: 130px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
    .board-line:last-child { border-bottom: 0; }
    .board-line span { color: var(--muted); font-weight: 700; }
    .board-line strong { color: var(--ink); }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .audience-card {
      min-height: 178px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 10px 26px rgba(17,34,57,.06);
    }
    .audience-card span {
      display: inline-grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: var(--mint);
      color: var(--green);
      font-weight: 900;
      margin-bottom: 14px;
    }
    .audience-card h3 { margin: 0 0 8px; color: var(--ink); font-size: 20px; }
    .audience-card p { margin: 0; color: var(--muted); font-size: 15px; }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .feature {
      min-height: 188px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .feature .icon {
      width: 42px; height: 42px;
      border-radius: 8px;
      background: var(--mint);
      color: var(--green);
      display: grid; place-items: center;
      font-weight: 900;
      margin-bottom: 16px;
    }
    .feature h3 { margin: 0 0 8px; color: var(--ink); }
    .feature p { margin: 0; color: var(--muted); }

    .workflow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      counter-reset: step;
    }
    .step {
      position: relative;
      padding: 22px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      min-height: 170px;
    }
    .step::before {
      counter-increment: step;
      content: counter(step);
      width: 34px; height: 34px;
      display: grid; place-items: center;
      background: var(--ink);
      color: #fff;
      border-radius: 8px;
      font-weight: 900;
      margin-bottom: 16px;
    }
    .step h3 { margin: 0 0 8px; color: var(--ink); }
    .step p { margin: 0; color: var(--muted); }

    .pricing-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }
    .price-card {
      padding: 28px;
      border-radius: 8px;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 12px 32px rgba(17,34,57,.07);
    }
    .price-card.featured {
      background: linear-gradient(135deg, var(--ink), var(--green));
      color: #fff;
      border-color: transparent;
    }
    .price-card h3 { margin: 0; font-size: 24px; }
    .price { margin: 16px 0; font-size: 42px; line-height: 1; font-weight: 900; color: var(--green); }
    .featured .price { color: var(--gold-2); }
    .price span { font-size: 15px; color: var(--muted); font-weight: 700; }
    .featured .price span { color: rgba(255,255,255,.72); }
    .ticks { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 12px; }
    .ticks li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
    .featured .ticks li { color: rgba(255,255,255,.82); }
    .ticks li::before { content: "✓"; color: var(--green); font-weight: 900; }
    .featured .ticks li::before { color: var(--gold-2); }
    .pricing-note {
      margin-top: 18px;
      padding: 16px 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      color: var(--muted);
      font-size: 15px;
    }

    .contact-band {
      background:
        linear-gradient(90deg, rgba(17,34,57,.95), rgba(8,123,104,.88)),
        url("../../wethaq-logo.png") center / 760px auto no-repeat;
      color: #fff;
      padding: 80px 0;
    }
    .contact-box {
      display: grid;
      grid-template-columns: 1fr minmax(320px, 440px);
      gap: 24px;
      align-items: center;
    }
    .contact-box h2 { margin: 0 0 10px; font-size: clamp(30px, 4vw, 48px); }
    .contact-box p { margin: 0; color: rgba(255,255,255,.82); font-size: 18px; max-width: 680px; }
    .trial-form {
      display: grid;
      gap: 10px;
      padding: 18px;
      border-radius: 8px;
      background: rgba(255,255,255,.96);
      color: var(--ink);
      box-shadow: 0 22px 52px rgba(0,0,0,.2);
    }
    .trial-form h3 { margin: 0; font-size: 22px; }
    .trial-form p { color: var(--muted); font-size: 14px; line-height: 1.7; }
    .trial-form input {
      width: 100%;
      min-height: 44px;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 9px 11px;
      font: inherit;
      background: #fff;
      color: var(--ink);
    }
    .trial-form .btn { border: 0; cursor: pointer; width: 100%; }
    .trial-status { min-height: 20px; color: var(--muted); font-size: 13px; line-height: 1.6; }
    .trial-status.ok { color: var(--green); font-weight: 800; }
    .trial-status.err { color: #b42318; font-weight: 800; }

    .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .faq-item { padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
    .faq-item b { color: var(--ink); display: block; margin-bottom: 8px; }
    .faq-item p { margin: 0; color: var(--muted); }

    footer { padding: 28px 0; background: #0d1b2e; color: rgba(255,255,255,.72); }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
    .footer-inner img { width: 104px; background: #fff; border-radius: 8px; padding: 4px 8px; }

    @media (max-width: 980px) {
      body { font-size: 15px; }
      .nav-links { display: none; }
      .nav-inner { min-height: 64px; }
      .brand img { width: 96px; height: 38px; padding: 3px 7px; }
      .brand span { display: none; }
      .nav-actions { gap: 8px; }
      .nav-actions .btn { min-height: 40px; padding: 8px 12px; font-size: 14px; }
      .guide-link { display: inline-flex; font-size: 13px; }
      .dashboard-scene { display: none; }
      .hero { min-height: auto; padding: 104px 0 58px; }
      .hero-logo-mark { width: 85vw; left: -18vw; top: 120px; opacity: .11; }
      .hero-copy { width: 100%; max-width: 680px; margin-inline: auto; padding-top: 20px; text-align: center; }
      .hero p { margin-inline: auto; }
      .hero-actions, .hero-proof { justify-content: center; }
      .trust-strip { margin-top: -24px; }
      .trust-item { padding: 18px; }
      section { padding: 64px 0; }
      .section-head { gap: 16px; margin-bottom: 24px; }
      .section-head h2 { font-size: clamp(26px, 6vw, 36px); }
      .section-head p { font-size: 16px; }
      .section-head, .split, .pricing-wrap, .contact-box { grid-template-columns: 1fr; }
      .trust-box, .features-grid, .workflow, .faq-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
      .feature, .audience-card, .step { min-height: auto; padding: 18px; }
      .price-card { padding: 22px; }
    }
    @media (max-width: 640px) {
      body { padding-bottom: 78px; }
      .container { width: min(1180px, calc(100% - 28px)); }
      .nav { background: rgba(17,34,57,.94); backdrop-filter: blur(16px); }
      .nav-inner { min-height: 54px; gap: 10px; }
      .brand img { width: 82px; height: 32px; border-radius: 7px; }
      .nav-actions .btn.ghost { display: none; }
      .nav-actions .btn.primary { display: none; }
      .guide-link { padding: 8px 10px; border-radius: 8px; background: rgba(255,255,255,.1); }
      .hero {
        padding: 78px 0 30px;
        min-height: auto;
        background:
          radial-gradient(circle at 50% 0%, rgba(209,165,74,.18), transparent 42%),
          linear-gradient(180deg, #0b3329 0%, #112239 100%);
      }
      .hero-logo-mark { width: 126vw; left: -44vw; top: 76px; opacity: .07; }
      .hero-copy { padding-top: 0; text-align: right; }
      .eyebrow { font-size: 11px; min-height: 26px; padding: 3px 9px; }
      .hero h1 { font-size: clamp(28px, 8vw, 36px); line-height: 1.25; margin: 10px 0; }
      .hero p { font-size: 14px; line-height: 1.85; max-width: 100%; margin-inline: 0; }
      .hero-actions { flex-direction: column; align-items: stretch; gap: 9px; margin-top: 18px; }
      .hero-actions .btn, .contact-box .btn, .price-card .btn {
        width: 100%;
        min-height: 50px;
        white-space: normal;
        text-align: center;
      }
      .hero-proof {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin-top: 14px;
      }
      .proof-pill {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        text-align: center;
        padding: 8px 6px;
        font-size: 12px;
        line-height: 1.45;
      }
      .trust-strip { margin-top: 0; }
      .trust-box { box-shadow: none; }
      .trust-item strong { font-size: 16px; }
      section { padding: 54px 0; }
      .split { gap: 18px; }
      .board-line { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
      .scene-grid, .trust-box, .features-grid, .workflow, .faq-grid, .audience-grid { grid-template-columns: 1fr; }
      .scene-row { grid-template-columns: 1fr 1fr; }
      .audience-card, .feature {
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 10px;
        align-items: start;
      }
      .audience-card span, .feature .icon { margin: 0; }
      .audience-card h3, .feature h3 { margin-top: 0; }
      .audience-card p, .feature p { grid-column: 2; font-size: 14px; }
      .price { font-size: 34px; }
      .ticks { gap: 10px; }
      .pricing-note { font-size: 14px; }
      .contact-band { padding: 56px 0 88px; background-size: 520px auto; }
      .contact-box h2 { font-size: 30px; }
      .contact-box p { font-size: 16px; }
      .contact-box .btn { width: 100%; }
      .trial-form { padding: 14px; }
      .trial-form input { min-height: 48px; font-size: 16px; }
      .footer-inner { justify-content: center; text-align: center; }
      .mobile-sticky-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 30;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 54px;
        padding: 12px 16px;
        border-radius: 8px;
        background: var(--gold);
        color: #172033;
        font-weight: 900;
        box-shadow: 0 18px 42px rgba(17,34,57,.24);
      }
    }
    @media (max-width: 420px) {
      .container { width: min(1180px, calc(100% - 22px)); }
      .hero { padding-top: 72px; }
      .hero h1 { font-size: clamp(27px, 8.2vw, 33px); }
      .hero p { font-size: 13.5px; }
      .proof-pill { font-size: 11.5px; padding-inline: 4px; }
      .section-head h2 { font-size: 25px; }
      .price-card { padding: 18px; }
      .footer-inner img { width: 92px; }
    }
