/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 11 2026 | 04:43:30 */
/*  */ 

* { box-sizing: border-box; margin: 0; padding: 0; }

  .seo-wrap {
    font-family: 'DM Sans', sans-serif;
    background: #0d0d0d;
    padding: 3rem 2rem;
    color: #fff;
  }

  .seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
  }

  /* Results Card */
  .seo-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-left: 3px solid #22c55e;
    border-radius: 0 14px 14px 0;
    padding: 1.75rem;
  }
.card-title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .card-sub {
    font-size: 22px;
    color: #fff;
    margin-bottom: 1.25rem;
  }

  .phase-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
  }

  .phase-row:last-of-type { border-bottom: none; } .phase-badge {
    font-size: 18px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: #052e16;
    color: #22c55e;
    min-width: 52px;
    text-align: center;
  }

  .phase-bar-wrap {
    flex: 1;
    height: 8px;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
  }

  .phase-bar {
    height: 100%;
    background: #22c55e;
    border-radius: 10px;
  }

  .phase-label {
    font-size: 18px;
    color: #aaa;
    white-space: nowrap;
  }.guarantee-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 1.25rem;
    font-size: 18px;
    color: #888;
    line-height: 1.5;
  }

  .guarantee-note span { color: #22c55e; font-size: 16px; }

  /* Consulting Card */
  .consult-card {
    background: #0a1f0f;
    border: 1px solid #14532d;
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .consult-title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .consult-text {
    font-size: 18px;
    color: #fff;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
  }

  .consult-btn {
    display: inline-block;
    background: #22c55e;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
  } .consult-btn:hover { background: #16a34a; color: #fff; }

  /* ✅ Mobile Responsive */
  @media (max-width: 640px) {
    .seo-wrap { padding: 2rem 1rem; }

    .seo-grid {
      grid-template-columns: 1fr;
    }

    .seo-card {
      border-left: none;
      border-top: 3px solid #22c55e;
      border-radius: 0 0 14px 14px;
    }

    .card-title { font-size: 18px; }
    .consult-title { font-size: 20px; }
    .consult-btn { width: 100%; }
  }