.gf-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .gf-list li {
      margin-bottom: 12px;
      color: #536071;
    }

    .gf-list li::before {
      content: "✓";
      color: #0b5ed7;
      font-weight: 800;
      margin-right: 10px;
    }

    .gf-seo-page {
      padding: 90px 0 70px;
      background:
        radial-gradient(circle at 85% 10%, rgba(13, 110, 253, 0.12), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      overflow: hidden;
      position: relative;
    }

    .gf-seo-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(13, 110, 253, 0.09);
      color: #0b5ed7;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .gf-seo-title {
      font-size: clamp(32px, 4.5vw, 54px);
      line-height: 1.08;
      letter-spacing: -1.2px;
      color: #08111f;
      max-width: 820px;
    }

    .gf-seo-text {
      color: #536071;
      font-size: 17px;
      line-height: 1.8;
      max-width: 780px;
    }

    .gf-seo-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .gf-seo-btn {
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .gf-seo-btn.primary {
      background: #0b5ed7;
      color: #ffffff;
      box-shadow: 0 14px 30px rgba(13, 110, 253, 0.22);
    }

    .gf-seo-btn.secondary {
      background: #ffffff;
      color: #0b5ed7;
      border: 1px solid rgba(13, 110, 253, 0.22);
    }

    .gf-software-visual {
      position: relative;
      min-height: 430px;
      margin-top: 20px;
    }

    .gf-dashboard-card {
      position: absolute;
      width: 330px;
      min-height: 230px;
      right: 40px;
      top: 70px;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(10, 30, 60, 0.08);
      border-radius: 28px;
      padding: 22px;
      box-shadow: 0 30px 70px rgba(10, 30, 60, 0.12);
      animation: dashboardFloat 5s ease-in-out infinite;
      z-index: 4;
    }

    .gf-device-card {
      position: absolute;
      width: 180px;
      height: 230px;
      left: 290px;
      top: 145px;
      background: #06152e;
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 25px 55px rgba(6, 21, 46, 0.22);
      animation: deviceFloat 4.5s ease-in-out infinite;
      z-index: 5;
    }

    .gf-device-screen {
      background: linear-gradient(180deg, #10284f, #0b5ed7);
      height: 135px;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
    }

    .gf-face-circle {
      width: 58px;
      height: 58px;
      border: 2px solid rgba(255,255,255,0.75);
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      animation: scanPulse 2s ease-in-out infinite;
    }

    .gf-scan-line {
      position: absolute;
      left: 16px;
      right: 16px;
      height: 2px;
      background: rgba(255,255,255,0.85);
      top: 20px;
      animation: scanMove 2.4s ease-in-out infinite;
    }

    .gf-device-label {
      color: #ffffff;
      font-size: 13px;
      margin-top: 16px;
      line-height: 1.5;
    }

    .gf-flow-line {
      position: absolute;
      left: 170px;
      right: 330px;
      top: 210px;
      height: 3px;
      background: linear-gradient(90deg, transparent, #0b5ed7, transparent);
      animation: flowMove 2.2s linear infinite;
      z-index: 2;
    }

    .gf-mini-card {
      background: #f8fbff;
      border: 1px solid rgba(10, 30, 60, 0.08);
      border-radius: 18px;
      padding: 14px;
      margin-bottom: 12px;
    }

    .gf-mini-label {
      color: #536071;
      font-size: 12px;
      margin-bottom: 6px;
    }

    .gf-mini-value {
      color: #08111f;
      font-weight: 800;
      font-size: 18px;
    }

    .gf-progress {
      height: 8px;
      background: #eaf2ff;
      border-radius: 999px;
      overflow: hidden;
      margin-top: 8px;
    }

    .gf-progress span {
      display: block;
      height: 100%;
      width: 72%;
      background: #0b5ed7;
      border-radius: 999px;
      animation: progressGrow 3s ease-in-out infinite;
    }

    .gf-floating-pill {
      position: absolute;
      background: #ffffff;
      color: #08111f;
      border: 1px solid rgba(10, 30, 60, 0.08);
      box-shadow: 0 18px 40px rgba(10, 30, 60, 0.10);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      z-index: 6;
    }

    .gf-pill-one {
      right: 15px;
      top: 20px;
      animation: pillFloat 4s ease-in-out infinite;
    }

    .gf-pill-two {
      right: 20px;
      bottom: 10px;
      animation: pillFloat 4.8s ease-in-out infinite;
    }

    .gf-pill-three {
      left: 280px;
      top: 135px;
      animation: pillFloat 5.2s ease-in-out infinite;
    }

    @keyframes dashboardFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    @keyframes deviceFloat {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      50% { transform: translateY(12px) rotate(1deg); }
    }

    @keyframes scanPulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
      50% { box-shadow: 0 0 0 14px rgba(255,255,255,0.05); }
    }

    @keyframes scanMove {
      0% { top: 20px; opacity: 0.4; }
      50% { top: 112px; opacity: 1; }
      100% { top: 20px; opacity: 0.4; }
    }

    @keyframes flowMove {
      0% { opacity: 0.2; transform: scaleX(0.65); }
      50% { opacity: 1; transform: scaleX(1); }
      100% { opacity: 0.2; transform: scaleX(0.65); }
    }

    @keyframes progressGrow {
      0%, 100% { width: 55%; }
      50% { width: 82%; }
    }

    @keyframes pillFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .gf-seo-section {
      padding: 70px 0;
    }

    .gf-content-card {
      background: #ffffff;
      border: 1px solid rgba(10, 30, 60, 0.08);
      border-radius: 24px;
      padding: 28px;
      height: 100%;
      box-shadow: 0 18px 45px rgba(10, 30, 60, 0.06);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
      transform-style: preserve-3d;
      will-change: transform;
    }

    .gf-content-card:hover {
      transform: translateY(-8px);
      border-color: rgba(13, 110, 253, 0.26);
      box-shadow: 0 26px 60px rgba(10, 30, 60, 0.12);
    }

    .gf-feature-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(13, 110, 253, 0.1);
      color: #0b5ed7;
      font-size: 20px;
      margin-bottom: 14px;
      transition: transform 0.35s ease, background-color 0.35s ease;
    }

    .gf-content-card:hover .gf-feature-icon {
      transform: translateY(-3px) rotate(-6deg);
      background: rgba(13, 110, 253, 0.16);
    }

    .gf-seo-btn {
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .gf-seo-btn:hover {
      transform: translateY(-2px);
    }

    .gf-mini-card {
      transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .gf-mini-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 24px rgba(10, 30, 60, 0.1);
    }

    .gf-content-card h3 {
      font-size: 21px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .gf-content-card p {
      color: #536071;
      line-height: 1.75;
      margin-bottom: 0;
    }

    @media (max-width: 991px) {
      .gf-software-visual {
        min-height: 360px;
      }

      .gf-dashboard-card {
        right: 0;
        width: 285px;
      }

      .gf-device-card {
        left: 0;
      }

      .gf-flow-line {
        display: none;
      }
    }

    @media (max-width: 575px) {
      .gf-software-visual {
        min-height: 520px;
      }

      .gf-dashboard-card {
        left: 0;
        right: auto;
        top: 260px;
        width: 100%;
      }

      .gf-device-card {
        left: 50%;
        transform: translateX(-50%);
      }

      .gf-pill-one,
      .gf-pill-two,
      .gf-pill-three {
        display: none;
      }
    }