.elementor-6 .elementor-element.elementor-element-ee1f193{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-6 .elementor-element.elementor-element-0a87ab1 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS */:root {
      --bg: #f5f7fa;
      --surface: #ffffff;
      --text: #171a1f;
      --text-2: #676d7a;
      --text-3: #aeb5c2;

      --border: #e3e8f0;
      --border-2: #d6dde8;

      --blue: #2d69e0;
      --blue-hover: #1f56c7;
      --blue-deep: #1c3568;
      --blue-soft: #eef4ff;

      --green: #168a45;
      --green-soft: #eaf7ef;

      --shadow-card:
        0 1px 2px rgba(23, 26, 31, .04),
        0 14px 38px rgba(23, 26, 31, .075);

      --shadow-soft:
        0 1px 2px rgba(23, 26, 31, .03),
        0 8px 22px rgba(23, 26, 31, .05);

      --max: 1180px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
      background:
        radial-gradient(circle at 50% -16%, rgba(45, 105, 224, .14), transparent 32%),
        radial-gradient(circle at 90% 18%, rgba(45, 105, 224, .075), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, var(--bg) 100%);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .topbar {
      width: 100%;
      border-bottom: 1px solid rgba(227, 232, 240, .8);
      background: rgba(255, 255, 255, .78);
      backdrop-filter: blur(14px);
    }

    .topbar-inner {
      width: 100%;
      max-width: var(--max);
      height: 76px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      height: 34px;
    }

    .logo img {
      display: block;
      width: 206px;
      max-width: 44vw;
      height: auto;
    }

    .topbar-note {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 38px;
      padding: 0 14px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,.84);
      color: var(--text-2);
      font-size: 14px;
      font-weight: 650;
      box-shadow: var(--shadow-soft);
      white-space: nowrap;
    }

    .topbar-note::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(22, 138, 69, .12);
      flex: 0 0 auto;
    }

    .hero {
      flex: 1;
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 86px 24px 46px;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
      gap: 42px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      height: 34px;
      padding: 0 13px;
      margin-bottom: 24px;
      border: 1px solid #bfd5ff;
      border-radius: 999px;
      background: var(--blue-soft);
      color: var(--blue);
      font-size: 14px;
      font-weight: 760;
      letter-spacing: -.01em;
    }

    .eyebrow svg {
      width: 17px;
      height: 17px;
      flex: 0 0 auto;
    }

    h1 {
      margin: 0;
      max-width: 800px;
      font-size: clamp(48px, 6.4vw, 82px);
      line-height: .98;
      font-weight: 700;
      color: var(--text);
    }

    .gradient-text {
      color: var(--blue);
    }

    .lead {
      margin: 26px 0 0;
      max-width: 720px;
      color: var(--text-2);
      font-size: clamp(16px, 1.5vw, 20px);
      line-height: 1.4;
      font-weight: 400;
      letter-spacing: -.015em;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 36px;
    }

    .btn {
      height: 56px;
      border: 1px solid transparent;
      border-radius: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
      padding: 0 24px;
      cursor: pointer;
      user-select: none;
      transition:
        transform .16s ease,
        box-shadow .16s ease,
        background .16s ease,
        border-color .16s ease;
      font-size: 16px;
      font-weight: 780;
      letter-spacing: -.015em;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      color: #fff;
      background: var(--blue);
      box-shadow: 0 12px 26px rgba(45, 105, 224, .25);
    }

    .btn-primary:hover {
      background: var(--blue-hover);
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255,255,255,.86);
      border-color: var(--border-2);
      box-shadow: var(--shadow-soft);
    }

    .btn svg {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
    }

    .microcopy {
      margin-top: 16px;
      color: var(--text-3);
      font-size: 14px;
      font-weight: 570;
    }

    .proof-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 34px;
    }

    .proof-pill {
      height: 34px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 12px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,.76);
      color: #4d5668;
      font-size: 13px;
      font-weight: 690;
      box-shadow: 0 1px 2px rgba(23,26,31,.025);
    }

    .proof-pill svg {
      width: 15px;
      height: 15px;
      color: var(--blue);
    }

    .preview-card {
      position: relative;
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.9));
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }

    .preview-card::before {
      content: "";
      position: absolute;
      inset: -1px -1px auto -1px;
      height: 110px;
      background:
        radial-gradient(circle at 50% 0%, rgba(45,105,224,.13), transparent 58%);
      pointer-events: none;
    }

    .preview-header {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .preview-title {
      margin: 0;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: -.02em;
    }

    .status {
      height: 28px;
      display: inline-flex;
      align-items: center;
      padding: 0 10px;
      border-radius: 999px;
      color: var(--green);
      background: var(--green-soft);
      border: 1px solid #bfe8cf;
      font-size: 12px;
      font-weight: 780;
      white-space: nowrap;
    }

    .metric-card {
      position: relative;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: center;
      min-height: 94px;
      margin-top: 12px;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: #fff;
      box-shadow:
        0 1px 2px rgba(23,26,31,.025),
        0 5px 16px rgba(23,26,31,.035);
    }

    .metric-icon {
      width: 52px;
      height: 52px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--blue-soft);
      color: var(--blue);
    }

    .metric-icon svg {
      width: 27px;
      height: 27px;
    }

    .metric-label {
      margin: 0 0 5px;
      color: var(--text-2);
      font-size: 14px;
      font-weight: 700;
    }

    .metric-value {
      color: var(--text);
      font-size: 28px;
      line-height: 1;
      font-weight: 830;
      letter-spacing: -.04em;
    }

    .metric-value.blue {
      color: var(--blue);
    }

    .mini-chart {
      position: relative;
      height: 124px;
      margin-top: 14px;
      padding: 18px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: #fff;
      overflow: hidden;
    }

    .chart-lines {
      position: absolute;
      inset: 20px 18px;
      background:
        linear-gradient(to bottom, transparent 24%, rgba(227,232,240,.9) 25%, transparent 26%),
        linear-gradient(to bottom, transparent 49%, rgba(227,232,240,.9) 50%, transparent 51%),
        linear-gradient(to bottom, transparent 74%, rgba(227,232,240,.9) 75%, transparent 76%);
    }

    .chart-svg {
      position: absolute;
      inset: 18px;
      width: calc(100% - 36px);
      height: calc(100% - 36px);
      overflow: visible;
    }

    .chart-label {
      position: relative;
      z-index: 1;
      color: var(--text-2);
      font-size: 13px;
      font-weight: 750;
    }

    .feature-grid {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px 72px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .feature {
      padding: 20px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.88);
      box-shadow: var(--shadow-soft);
    }

    .feature-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      background: var(--blue-soft);
      color: var(--blue);
    }

    .feature-icon svg {
      width: 21px;
      height: 21px;
    }

    .feature h2 {
      margin: 0 0 8px;
      color: var(--text);
      font-size: 17px;
      line-height: 1.22;
      font-weight: 800;
      letter-spacing: -.02em;
    }

    .feature p {
      margin: 0;
      color: var(--text-2);
      font-size: 14px;
      line-height: 1.45;
      font-weight: 470;
    }

    .footer {
      padding: 22px 24px 30px;
      border-top: 1px solid rgba(227,232,240,.8);
      color: var(--text-3);
      text-align: center;
      font-size: 13px;
      font-weight: 560;
    }

    /* Modal Tally */
    .modal {
      position: fixed;
      inset: 0;
      z-index: 50;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 22px;
      background: rgba(23, 26, 31, .48);
      backdrop-filter: blur(8px);
    }

    .modal.is-open {
      display: flex;
    }

    .modal-panel {
      width: min(760px, 100%);
      max-height: min(760px, 92vh);
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 24px 70px rgba(23, 26, 31, .22);
    }

    .modal-head {
      height: 58px;
      padding: 0 18px 0 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,.96);
    }

    .modal-head strong {
      font-size: 16px;
      font-weight: 800;
      letter-spacing: -.02em;
    }

    .close {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: #fff;
      color: var(--text-2);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .close:hover {
      color: var(--text);
      border-color: var(--border-2);
    }

    .modal-body {
      height: min(620px, calc(92vh - 58px));
      overflow: auto;
      background: #fff;
    }

    .modal-body iframe {
      display: block;
      width: 100%;
      height: 620px;
      border: 0;
    }

    @media (max-width: 900px) {
      .topbar-inner {
        height: 68px;
      }

      .topbar-note {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
        padding-top: 48px;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .preview-card {
        order: -1;
      }
    }

    @media (max-width: 560px) {
      .topbar-inner {
        padding: 0 18px;
      }

      .logo img {
        width: 174px;
      }

      .hero {
        padding: 38px 18px 36px;
      }

      .hero-actions {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .proof-row {
        gap: 8px;
      }

      .feature-grid {
        padding: 0 18px 48px;
      }
    }/* End custom CSS */