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

  body {
      font-family: 'Inter', sans-serif;
      background: #fbfdfe;
      color: #0a0c10;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      scroll-behavior: smooth;
  }

  /* Placeholder for your existing tools section */
  .tools-placeholder {
      flex: 1;
      /* max-width: 1300px; */
      width: 100%;
  }

  .demo-note {
      background: rgba(255, 255, 255, 0.92);
      border-radius: 8px;
      padding: 2rem 1.8rem;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
      border: 1px solid rgba(203, 213, 225, 0.5);
      text-align: center;
      transition: all 0.2s;
  }

  .demo-note h3 {
      font-weight: 700;
      font-size: 1.7rem;
      background: linear-gradient(135deg, #0f2b3d, #1e4a76);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 0.75rem;
  }

  .demo-note p {
      color: #2c3e50;
      font-size: 1rem;
      line-height: 1.5;
  }

  .tool-badges {
      margin-top: 1.2rem;
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
  }

  .tool-badge {
      background: #eef2ff;
      padding: 0.4rem 1rem;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #1e40af;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  /* ========== MODERN HEADER — Enhanced, attractive, glassmorphic ========== */
  .site-header {
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 8px 25px -10px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
  }

  .header-container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0.8rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
  }

  /* Logo area — more premium */
  .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
      transition: transform 0.2s ease;
      text-decoration: none;
  }

  .logo-area:hover {
      transform: scale(1.02);
  }

  .logo-icon {
      background: linear-gradient(145deg, #2563eb, #1e3a8a);
      width: 48px;
      height: 48px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 20px -8px rgba(37, 99, 235, 0.35);
      transition: all 0.2s;
  }

  .logo-icon i {
      font-size: 1.8rem;
      color: white;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }

  .brand-text h1 {
      font-size: 1.65rem;
      font-weight: 800;
      background: linear-gradient(135deg, #0c2b44, #1e4a7a);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      line-height: 1.2;
  }

  .brand-text span {
      font-size: 0.7rem;
      font-weight: 500;
      color: #5b6e8c;
      letter-spacing: 0.3px;
      background: rgba(100, 116, 139, 0.1);
      padding: 0.2rem 0.6rem;
      border-radius: 8px;
      display: inline-block;
  }

  /* Desktop Navigation — sleek & spacious */
  .nav-links-desktop {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      flex-wrap: wrap;
  }

  .nav-btn {
      padding: 0.6rem 1.3rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      background: transparent;
      color: #1e2a3e;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid transparent;
      letter-spacing: -0.2px;
  }

  .nav-btn i {
      font-size: 0.95rem;
      color: #5b6e8c;
      transition: transform 0.2s;
  }

  .nav-btn:hover {
      background: #ffffff;
      border-color: #e2e8f0;
      color: #2563eb;
      transform: translateY(-2px);
      box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.08);
  }

  .nav-btn:hover i {
      color: #2563eb;
      transform: scale(1.05);
  }

  .nav-btn.active {
      background: linear-gradient(110deg, #eef2ff, #e6edfc);
      color: #1e40af;
      border-color: #cbdff2;
      font-weight: 700;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  }

  .nav-btn.active i {
      color: #2563eb;
  }

  /* Enhanced Dropdown for "More Tools" */
  .dropdown {
      position: relative;
  }

  .dropdown-btn {
      background: transparent;
      border: none;
      cursor: pointer;
  }

  .dropdown-content {
      position: absolute;
      top: 115%;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(12px);
      min-width: 240px;
      border-radius: 8px;
      box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.18);
      border: 1px solid rgba(203, 213, 225, 0.7);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.25s ease;
      z-index: 200;
      padding: 0.7rem 0;
  }

  .dropdown:hover .dropdown-content,
  .dropdown-content:hover {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  .dropdown-content a {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0.75rem 1.3rem;
      color: #1f2a44;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      transition: 0.2s;
  }

  .dropdown-content a i {
      width: 24px;
      font-size: 1rem;
      color: #4b6589;
  }

  .dropdown-content a:hover {
      background: #f1f5fe;
      color: #2563eb;
      padding-left: 1.6rem;
  }

  /* Header actions — more interactive */
  .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
  }

  .get-started {
      background: #0f172a;
      color: white;
      border-radius: 8px;
      padding: 0.6rem 1.5rem;
      font-weight: 700;
      font-size: 0.85rem;
      border: none;
      transition: all 0.25s;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: -0.2px;
      box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
  }

  .get-started:hover {
      background: #1e3a8a;
      transform: translateY(-3px);
      box-shadow: 0 12px 22px -10px #1e3a8a70;
  }

  .get-started i {
      font-size: 0.9rem;
  }

  /* Mobile menu button — refined */
  .mobile-menu-btn {
      display: none;
      background: #f1f5f9;
      border: none;
      font-size: 1.5rem;
      width: 46px;
      height: 46px;
      border-radius: 8px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #1f2a44;
      transition: all 0.2s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  }

  .mobile-menu-btn:hover {
      background: #e2e8f0;
      transform: scale(0.96);
  }

  .mobile-nav {
      display: none;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      width: 100%;
      padding: 1.2rem 1.5rem;
      border-top: 1px solid #eef2f8;
      box-shadow: 0 15px 25px -12px rgba(0, 0, 0, 0.08);
  }

  .mobile-nav a,
  .mobile-dropdown-item {
      padding: 0.9rem 0;
      font-size: 1rem;
      font-weight: 600;
      border-bottom: 1px solid #edf2f7;
      display: flex;
      align-items: center;
      gap: 14px;
      color: #1f2a44;
      text-decoration: none;
      transition: 0.2s;
  }

  .mobile-nav a:active,
  .mobile-dropdown-item:active {
      background: #f8fafc;
  }

  .mobile-nav a i {
      width: 28px;
      color: #3b6cb0;
  }

  .mobile-nav.show {
      display: flex;
  }

  /* ========== ATTRACTIVE FOOTER — Elevated, vibrant, fully responsive ========== */
  .site-footer {
      background: #ffffff;
      border-top: 1px solid #eef2f8;
      margin-top: auto;
      padding: 3.5rem 0 1.8rem;
      font-size: 0.9rem;
      position: relative;
  }

  .site-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #2563eb, #38bdf8, #2563eb);
  }

  .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2.5rem;
      margin-bottom: 2.8rem;
  }

  .footer-col h3 {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 1.3rem;
      color: #0f172a;
      display: flex;
      align-items: center;
      gap: 10px;
      letter-spacing: -0.3px;
  }

  .footer-col h3 i {
      color: #3b82f6;
      background: #eef2ff;
      padding: 6px;
      border-radius: 8px;
      font-size: 0.9rem;
  }

  .footer-col ul {
      list-style: none;
  }

  .footer-col ul li {
      margin-bottom: 0.8rem;
  }

  .footer-col ul li a {
      text-decoration: none;
      color: #475569;
      transition: 0.2s;
      font-size: 0.88rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
  }

  .footer-col ul li a i {
      font-size: 0.75rem;
      color: #8ba0bc;
      transition: transform 0.2s;
  }

  .footer-col ul li a:hover {
      color: #2563eb;
      transform: translateX(6px);
  }

  .footer-col ul li a:hover i {
      transform: translateX(3px);
      color: #2563eb;
  }

  .footer-col p {
      color: #475569;
      line-height: 1.55;
      font-size: 0.88rem;
  }

  .social-icons {
      display: flex;
      gap: 16px;
      margin-top: 1.5rem;
  }

  .social-icons a {
      background: #f1f5f9;
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      color: #2c3e66;
      transition: all 0.25s;
      font-size: 1.2rem;
  }

  .social-icons a:hover {
      background: #2563eb;
      color: white;
      transform: translateY(-5px);
      box-shadow: 0 8px 16px -6px #2563eb60;
  }

  .footer-bottom {
      border-top: 1px solid #eef2f8;
      padding-top: 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.78rem;
      color: #5b6e8c;
  }

  .legal-links {
      display: flex;
      gap: 1.8rem;
  }

  .legal-links a {
      text-decoration: none;
      color: #5b6e8c;
      font-weight: 500;
      transition: 0.2s;
  }

  .legal-links a:hover {
      color: #2563eb;
  }

  /* Responsive design — mobile friendly header/footer */
  @media (max-width: 880px) {
      .nav-links-desktop {
          display: none;
      }

      .mobile-menu-btn {
          display: flex;
      }

      .header-container {
          padding: 0.7rem 1.2rem;
      }

      .brand-text h1 {
          font-size: 1.4rem;
      }

      .logo-icon {
          width: 42px;
          height: 42px;
      }

      .logo-icon i {
          font-size: 1.5rem;
      }
  }

  @media (max-width: 700px) {
      .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 2rem;
      }

      .footer-bottom {
          flex-direction: column;
          text-align: center;
      }

      .legal-links {
          justify-content: center;
      }


      .demo-note h3 {
          font-size: 1.4rem;
      }
  }

  @media (max-width: 520px) {
      .footer-grid {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .footer-col h3 {
          justify-content: center;
      }

      .social-icons {
          justify-content: center;
      }

      .header-actions .get-started span {
          display: none;
      }

      .get-started i {
          margin: 0;
      }

      .get-started {
          padding: 0.55rem 1.1rem;
      }

      .brand-text span {
          font-size: 0.6rem;
      }

      .brand-text h1 {
          font-size: 1.2rem;
      }
  }

  button {
      background: none;
      border: none;
  }



  /* FEATURES */
  .ts-features {
      background: #fff;
      border-bottom: 1px solid #e2e8f0;
      padding: 36px 24px;
  }

  .ts-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
      max-width: 960px;
      margin: 0 auto;
  }

  .ts-feat-card {
      background: #f8faff;
      border: 0.5px solid #dbeafe;
      border-radius: 10px;
      padding: 18px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .ts-feat-icon {
      width: 36px;
      height: 36px;
      background: #dbeafe;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .ts-feat-icon svg {
      width: 18px;
      height: 18px;
      color: #2563eb;
  }

  .ts-feat-title {
      font-size: 13px;
      font-weight: 600;
      color: #1e293b;
  }

  .ts-feat-desc {
      font-size: 12px;
      color: #64748b;
      line-height: 1.5;
  }



  /* HOW IT WORKS */
  .ts-how {
      padding: 40px 24px;
      background: #f8faff;
      border-bottom: 1px solid #e2e8f0;
  }

  .ts-section-label {
      text-align: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: #2563eb;
      margin-bottom: 8px;
  }

  .ts-section-title {
      text-align: center;
      font-size: clamp(18px, 3vw, 24px);
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px;
  }

  .ts-section-sub {
      text-align: center;
      font-size: 14px;
      color: #64748b;
      max-width: 480px;
      margin: 0 auto 32px;
      line-height: 1.6;
  }

  .ts-steps {
      display: flex;
      gap: 0;
      max-width: 760px;
      margin: 0 auto;
      align-items: flex-start;
      flex-wrap: wrap;
      justify-content: center;
  }

  .ts-step {
      flex: 1;
      min-width: 140px;
      text-align: center;
      padding: 0 12px;
      position: relative;
  }

  .ts-step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 20px;
      right: -1px;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, #93c5fd, #dbeafe);
      z-index: 0;
  }

  .ts-step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #2563eb;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      position: relative;
      z-index: 1;
  }

  .ts-step h4 {
      font-size: 13px;
      font-weight: 600;
      color: #1e293b;
      margin: 0 0 4px;
  }

  .ts-step p {
      font-size: 12px;
      color: #64748b;
      line-height: 1.5;
      margin: 0;
  }

  @media (max-width: 560px) {
      .ts-hero {
          padding: 24px 16px 28px;
      }

      .ts-hero-stats {
          gap: 20px;
      }

      .ts-step:not(:last-child)::after {
          display: none;
      }
  }
