 <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background: #f8faf9;
      color: #333;
      line-height: 1.6;
    }

    .clarity-call-section {
      max-width: 800px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .clarity-card {
      background: white;
      border-radius: 24px;
      padding: 48px;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    }

    .clarity-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .clarity-badge {
      display: inline-block;
      background: linear-gradient(135deg, #f0faf8 0%, #e5f5f2 100%);
      color: #14b8a6;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      padding: 8px 16px;
      border-radius: 50px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .clarity-title {
      font-family: 'Poppins', sans-serif;
      font-size: 2.25rem;
      font-weight: 700;
      color: #2A3439;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .clarity-price {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 8px;
    }

    .price-amount {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #14b8a6;
    }

    .price-divider {
      width: 2px;
      height: 28px;
      background: #e0e0e0;
    }

    .price-duration {
      font-family: 'Roboto', sans-serif;
      font-size: 1.25rem;
      color: #666;
    }

    .clarity-intro {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 40px;
    }

    .intro-main {
      font-size: 1.15rem;
      color: #444;
      margin-bottom: 16px;
      line-height: 1.7;
    }

    .intro-fee {
      font-size: 0.95rem;
      color: #666;
      font-style: italic;
    }

    .clarity-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-bottom: 40px;
    }

    .clarity-column {
      background: #f8fffe;
      border-radius: 16px;
      padding: 28px;
      border: 1px solid #e8f5f2;
    }

    .column-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .column-icon {
      font-size: 1.5rem;
    }

    .column-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      color: #2A3439;
    }

    .column-list {
      list-style: none;
    }

    .column-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 0.95rem;
      color: #444;
    }

    .column-list li:last-child {
      margin-bottom: 0;
    }

    .list-check {
      color: #14b8a6;
      font-weight: bold;
      margin-top: 2px;
    }

    .clarity-after {
      background: linear-gradient(135deg, #f0faf8 0%, #e5f5f2 100%);
      border-radius: 16px;
      padding: 24px 28px;
      margin-bottom: 40px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .after-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .after-content {
      flex: 1;
    }

    .after-label {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      color: #14b8a6;
      margin-bottom: 4px;
    }

    .after-text {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.6;
    }

    .clarity-cta {
      text-align: center;
    }

    .cta-arrow {
      font-size: 1.5rem;
      margin-bottom: 16px;
      animation: bounce 2s infinite;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-8px);
      }
      60% {
        transform: translateY(-4px);
      }
    }

    .cta-button {
      display: inline-block;
      padding: 18px 48px;
      background: #14b8a6;
      color: white;
      font-family: 'Poppins', sans-serif;
      font-size: 1.15rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
    }

    .cta-button:hover {
      background: #0d9488;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .clarity-call-section {
        padding: 40px 16px;
      }

      .clarity-card {
        padding: 32px 24px;
        border-radius: 20px;
      }

      .clarity-title {
        font-size: 1.75rem;
      }

      .price-amount {
        font-size: 1.75rem;
      }

      .price-duration {
        font-size: 1.1rem;
      }

      .clarity-columns {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .clarity-column {
        padding: 24px;
      }

      .clarity-after {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
      }

      .cta-button {
        padding: 16px 40px;
        font-size: 1.05rem;
        width: 100%;
      }
    }

    @media (max-width: 400px) {
      .clarity-card {
        padding: 28px 20px;
      }

      .clarity-title {
        font-size: 1.5rem;
      }

      .clarity-price {
        flex-direction: column;
        gap: 4px;
      }

      .price-divider {
        display: none;
      }
    }
  </style>