@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Manrope', sans-serif;
    }

    body {
      background: #ffffff;
      color: #111827;
      line-height: 1.6;
    }
    
    .text-nav {
      display: flex;
      justify-content: center;
      gap: 24px;
      padding: 25px 10px 0;
      flex-wrap: wrap;
    }
    
    .text-nav a {
      font-size: 0.95rem;
      color: #1f2937;
      text-decoration: none;
      font-weight: 600;
      position: relative;
      transition: color 0.2s ease;
    }
    
    .text-nav a::after {
      content: '';
      display: block;
      width: 0%;
      height: 2px;
      background: #3b82f6;
      transition: width 0.3s;
      margin-top: 4px;
    }
    
    .text-nav a:hover {
      color: #2563eb;
    }
    
    .text-nav a:hover::after {
      width: 100%;
    }
    
    /* Mobile Responsive */
    @media (max-width: 600px) {
      .text-nav {
        gap: 16px;
        font-size: 0.9rem;
      }
    
      .text-nav a {
        display: inline-block;
        padding: 6px 0;
      }
    }



    header {
      text-align: center;
      padding: 80px 20px 40px;
    }

    header h1 {
      font-size: 2.8rem;
      font-weight: 800;
    }

    header p {
      font-size: 1.2rem;
      /*margin-top: 10px;*/
      color: #4B5563;
      font-weight:600;
    }
    
    header .badge-notice{
        margin-top:15px;
    }
    
    .profile-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 24px;
      font-size: 0.95rem;
    }
    
    .profile-header img {
      width: 42px;
      height: 42px;
      border-radius: 100%;
      object-fit: cover;
    }
    
    .profile-header .name {
      font-weight: 600;
      color: #111827;
      display: block;
      text-align: left;
    }
    
    .profile-header .handle {
      color: #6b7280;
      font-size: 0.85rem;
      display: block;
      margin-top: 0px !important;
    }
    
    .profile-header .verified {
      color: #3b82f6;
      font-size: 0.9rem;
      margin-left: 3px;
    }
    .name-stack{
        line-height: 1.1;
    }
    
    @media (max-width: 600px) {
      .profile-header {
        flex-direction: column;
        gap: 6px;
      }
    
      .profile-header .name,
      .profile-header .handle {
        text-align: center;
      }
    }
    
    .badge-notice {
      display: inline-block;
      background: #FAF9F6;
      color: #4B5563;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 0.95rem;
      font-weight: 600;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
      margin-bottom: 20px;
      text-align: center;
    }
    
    .text-blue {
      color: #2563eb;
      font-weight: 600;
    }



    section {
      padding: 40px 20px;
      max-width: 900px;
      margin: auto;
    }

    h2 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #1F2937;
    }

    .section-box {
      /*background: #F4F4F4;*/
      padding: 30px;
      /*border-radius: 16px;*/
      /*box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);*/
      margin-bottom: 40px;
      transition: transform 0.3s ease;
    }
    
    /*.section-box h1{*/
    /*text-align: center;*/
    /*font-size: 2.4rem;*/
    /*  font-weight: 800;*/
    /*}*/

    .section-box:hover {
      transform: translateY(-4px);
    }
    
    .section-description {
      font-size: 16px;
      line-height: 1.7;
      color: #444;
    }
    
    .feature-list {
      list-style: none;
      padding-left: 0;
      margin-top: 1.5rem;
      font-size: 16px;
      line-height: 1.7;
      color: #444;
      /*max-width: 800px;*/
      /*margin-left: auto;*/
      /*margin-right: auto;*/
    }
    
    .feature-list li {
      margin-bottom: 1.4rem;
      font-weight:600;
      position: relative;
      padding-left: 24px;
    }
    
    .feature-list li::before {
      content: '✔';
      color: #2563eb;
      position: absolute;
      left: 0;
      font-weight: bold;
    }
    

    footer {
      text-align: center;
      padding: 30px 10px;
      color: #6b7280;
      font-size: 0.9rem;
    }

    
    .line-heading {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .line-heading .line {
      flex-grow: 1;
      height: 1px;
      background-color: #ccc; /* Light gray */
    }
    
    .line-heading h1 {
      font-size: 1.6rem;
      font-weight: 600;
      white-space: nowrap;
      margin: 0;
    }
    
    .feature-card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1000px;
      margin: 1.5rem auto;
    }
    
    .feature-card {
      background-color: #fff;
      border-radius: 14px;
      padding: 20px 24px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }
    
    .feature-card .icon {
      width: 22px;
      height: 22px;
      stroke: #2563eb;
      flex-shrink: 0;
      margin-top: 3px;
    }
    
    .feature-card p {
      margin: 0;
      /*color: #333;*/
      font-size: 15.5px;
      line-height: 1.6;
      font-weight:400;
    }
    
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.8rem;
      max-width: 1000px;
      margin: 0 auto;
      padding-top: 20px;
    }
    
    .tool-link {
      display: flex;
      gap: 16px;
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 14px;
      text-decoration: none;
      color: #111;
      border: 1px solid #e0e0e0;
      transition: all 0.25s ease;
    }
    
    .tool-link:hover {
      background-color: #fff;
      border-color: #1a5cff20;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    }
    
    .tool-link h3 {
      font-size: 16px;
      font-weight: 600;
      margin: 0 0 6px;
    }
    
    .tool-link p {
      font-size: 14px;
      color: #444;
      margin: 0;
    }
    
    .tool-icon {
      stroke: #2563eb;
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      margin-top: 4px;
    }
    
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 960px;
      margin: 0 auto;
      padding-top: 20px;
    }
    
    .testimonial-card {
      background-color: #fff;
      border-radius: 14px;
      padding: 24px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
      border-left: 4px solid #1a5cff;
      transition: transform 0.2s ease;
    }
    
    .testimonial-card:hover {
      transform: translateY(-4px);
    }
    
    .testimonial-card .quote {
      font-size: 16px;
      line-height: 1.6;
      color: #333;
      margin-bottom: 12px;
    }
    
    .testimonial-card .author {
      font-size: 14px;
      color: #555;
      font-style: italic;
    }
    
    .cta-subtext {
      font-size: 16px;
      color: #555;
      text-align: left;
      margin-bottom: 40px;
    }
    
    .cta-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      max-width: 1080px;
      margin: 0 auto;
    }
    
    .cta-card {
      background: #fff;
      padding: 24px;
      border-radius: 14px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.2s ease;
    }
    
    .cta-card:hover {
      transform: translateY(-4px);
    }
    
    .cta-icon {
      width: 32px;
      height: 32px;
      stroke: #2563eb;
      margin-bottom: 16px;
    }
    
    .cta-card h3 {
      font-size: 18px;
      margin-bottom: 12px;
      color: #1a1a1a;
    }
    
    .cta-card p {
      font-size: 15px;
      margin-bottom: 16px;
      color: #444;
    }
    
    .cta-button {
      all: unset;
      background-color: #2563eb;
      color: #fff;
      text-decoration: none;
      padding: 8px 18px;
      border-radius: 999px;
      font-size: 14px;
      transition: background 0.2s ease;
      display: inline-block;
    }
    
    .cta-button:hover {
      background-color: #154ed8;
    }
    
    .cta-form {
      margin-top: 20px;
      text-align: left;
    }
    
    .cta-form .form-group {
      margin-bottom: 18px;
    }
    
    .cta-form label {
      display: block;
      margin-bottom: 6px;
      font-size: 0.92rem;
      color: #374151;
      font-weight: 600;
    }
    
    .cta-form input,
    .cta-form textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: inherit;
      transition: border-color 0.2s, box-shadow 0.2s;
      background-color: #fff;
    }
    
    .cta-form input:focus,
    .cta-form textarea:focus {
      border-color: #2563eb;
      outline: none;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }
    
    .cta-form textarea {
      resize: vertical;
      min-height: 100px;
    }
    
    .cta-form select {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: inherit;
      background-color: #fff;
      color: #111827;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%236b7280' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' /%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 1rem;
      cursor: pointer;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    
    .cta-form select:focus {
      border-color: #2563eb;
      outline: none;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

    .suggestions-list {
      margin-top: 6px;
      list-style: none;
      padding: 0;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      max-height: 160px;
      overflow-y: auto;
      font-size: 0.9rem;
      z-index: 100;
      position: relative;
    }
    
    .suggestions-list li {
      padding: 10px 14px;
      border-bottom: 1px solid #f3f4f6;
      cursor: pointer;
      color: #111827;
      transition: background 0.2s ease;
    }
    
    .suggestions-list li:last-child {
      border-bottom: none;
    }
    
    .suggestions-list li:hover {
      background-color: #e0e7ff;
    }
    
    .chat-form-container {
      background: #fff;
      padding: 24px;
      border-radius: 14px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      max-width: 560px;
      margin: 30px auto;
      transition: all 0.3s ease;
}

.chat-step {
  margin-bottom: 24px;
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.chat-step.active {
  display: block;
}

.chat-label {
  font-size: 0.95rem;
  color: #374151;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.chat-input, .chat-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background-color: #fff;
}

.chat-input:focus, .chat-textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.chat-textarea {
  resize: vertical;
  min-height: 100px;
}

.chat-button {
  background-color: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 12px;
}

.chat-button:hover {
  background-color: #154ed8;
}

.suggestion-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.keyword-badge {
  background: #eef2ff;
  color: #1e3a8a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.keyword-badge:hover {
  background: #dbeafe;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.search-bar {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.search-bar input {
  width: 100%;
  max-width: 400px;
  padding: 14px 20px;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
  color: #111827;
}

.search-bar input::placeholder {
  color: #9ca3af;
}

.search-bar input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
  outline: none;
}


