
.features-section {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px; /* increased top/bottom padding */
  max-width: 1200px;
  margin: 0 auto;
}

.features-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.features-section p {
  font-size: 1.1rem;
  color: #777; /* lighter description */
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  word-wrap: break-word;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  align-items: start;
}

.feature-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 1rem;
  color: #888; /* lighter feature description */
  line-height: 1.5;
  word-wrap: break-word;
}

/* Next-level polish for Features Section (white/light theme) */

/* Feature item refinement */
.feature-item {
  background: #fff; /* keep white theme */
  border: 1px solid #eee; /* subtle border */
  border-radius: 16px;
  padding: 22px 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

/* Feature icons */
.feature-item img {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  transition: transform 0.35s ease;
}

.feature-item:hover img {
  transform: scale(1.15) rotate(5deg);
}

/* Titles & descriptions */
.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.98rem;
  font-weight: 300;
  color: #555;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 230px;
  word-wrap: break-word;
}

/* Heading improvements */
.features-section h2 {
  font-size: 2.4rem;
  gap: 12px;
}

.features-section h2 .heading-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.35s ease;
}

.features-section h2:hover .heading-icon {
  transform: scale(1.12) translateY(-2px);
}

/* Section description */
.features-section > p {
  font-size: 1.06rem;
  font-weight: 300;
  color: #666;
  max-width: 720px;
  margin: 0 auto 38px;
  line-height: 1.65;
}

/* Grid spacing */
.features-grid {
  gap: 30px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .features-section h2 {
    font-size: 2rem;
  }

  .feature-item {
    padding: 20px 15px;
  }

  .feature-item p {
    max-width: 100%;
  }
}

  /* ===== Dark Mode Optimization (Features Section) ===== */
@media (prefers-color-scheme: dark) {
  .features-section {
    background: transparent;
    color: #f1f1f1;
  }

  .features-section h2 {
    color: #ffffff;
  }

  .features-section > p {
    color: #b5b5b5;
  }

  /* Feature cards */
  .feature-item {
    background: #111;
    border: 1px solid #222;
    box-shadow: none;
  }

  .feature-item:hover {
    box-shadow: 0 10px 26px rgba(0,0,0,0.6);
  }

  .feature-item h3 {
    color: #ffffff;
  }

  .feature-item p {
    color: #b0b0b0;
  }

  /* Invert ALL icons (feature + heading) */
  .feature-item img,
  .features-section h2 img,
  .features-section h2 .heading-icon {
    filter: invert(1) brightness(1.1);
  }
}


  /* ===============================
   USEFLOW – SINGLE CONTAINER ONLY
   =============================== */

.useflow-install-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: system-ui, "Poppins", sans-serif;
  color: #111;
}

/* Header */
.useflow-header-box {
  text-align: center;
  margin-bottom: 40px;
}

.useflow-main-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
}

.useflow-title-icon {
  width: 32px;
  height: 32px;
}

.useflow-subtitle-text {
  max-width: 620px;
  margin: 14px auto 0;
  color: #555;
}

/* SINGLE BOX FOR EVERYTHING */
.useflow-steps-group {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* Section titles inside the container */
.useflow-section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Divider */
.useflow-divider {
  height: 1px;
  margin: 32px 0;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

/* ---------- Step Card Rows ---------- */
.useflow-step-list,
.useflow-numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.useflow-step-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.useflow-step-icon img {
  width: 46px;
  height: 46px;
}

.useflow-step-info h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.useflow-step-info p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* ---------- Number Rows ---------- */
.useflow-number-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.useflow-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- WhatsApp Button ---------- */
.useflow-contact-wrap {
  text-align: center;
  margin-top: 36px;
}

.useflow-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.useflow-whatsapp-icon {
  width: 20px;
  height: 20px;
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .useflow-step-card,
  .useflow-number-item {
    align-items: flex-start;
  }
}
/* ===============================
   USEFLOW – TYPOGRAPHY UPGRADE
   =============================== */

/* ---------- Import Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* ---------- Base Typography ---------- */
.useflow-install-wrap {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  color: #111;
  line-height: 1.55;
}

/* Headings */
.useflow-main-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.useflow-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.3px;
}

/* Step Card Text */
.useflow-step-info h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

.useflow-step-info p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.96rem;
  color: #555;
}

/* Numbered Step Text */
.useflow-number-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #444;
}

/* WhatsApp Button Text */
.useflow-whatsapp-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Optional: smooth font rendering */
.useflow-install-wrap, 
.useflow-steps-group, 
.useflow-step-info, 
.useflow-number-item, 
.useflow-whatsapp-btn {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* ===============================
   USEFLOW – STYLES IMPROVED (BLUE)
   =============================== */

/* ---------- Container ---------- */
.useflow-steps-group {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.useflow-steps-group:hover {
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
}

/* ---------- Section Titles ---------- */
.useflow-section-title {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 600;
  color: #222;
  margin-bottom: 28px;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.useflow-section-title:hover {
  color: #007bff; /* modern blue accent on hover */
}

/* ---------- Step Cards ---------- */
.useflow-step-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
  border: 1px solid transparent;
}

.useflow-step-card:hover {
  transform: translateY(-2px);
  border: 1px solid #007bff; /* blue outline */
  box-shadow: 0 8px 20px rgba(0,123,255,0.15);
}

/* Step card text */
.useflow-step-info h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: #111;
}

.useflow-step-info p {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.55;
}

/* ---------- Numbered Steps ---------- */
.useflow-number-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-radius: 16px;
  background: #f7f8fa;
  transition: background 0.3s ease, transform 0.25s ease;
}

.useflow-number-item:hover {
  background: #e6f0ff; /* soft blue background on hover */
  transform: translateX(2px);
}

.useflow-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.useflow-number-item:hover .useflow-step-number {
  background: #007bff; /* blue for numbers on hover */
}

/* ---------- WhatsApp Button (Now Blue) ---------- */
.useflow-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: #007bff; /* blue button */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.useflow-whatsapp-btn:hover {
  background: #0062cc; /* slightly darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,123,255,0.25);
}

/* WhatsApp icon */
.useflow-whatsapp-icon {
  width: 20px;
  height: 20px;
  filter: brightness(1); /* keep white icon visible */
}

/* ---------- Divider ---------- */
.useflow-divider {
  margin: 36px 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

/* ---------- Typography Smooth ---------- */
.useflow-install-wrap,
.useflow-step-info,
.useflow-number-item,
.useflow-whatsapp-btn {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

/* ---------- Icons ---------- */
.useflow-step-icon img,
.useflow-title-icon,
.useflow-whatsapp-icon {
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.useflow-step-icon img:hover,
.useflow-whatsapp-icon:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .useflow-step-card,
  .useflow-number-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .useflow-main-title {
    font-size: 2rem;
  }

  .useflow-section-title {
    font-size: 1.4rem;
  }
}
/* ===============================
   USEFLOW – BLUE + WhatsApp GREEN
   =============================== */

/* ---------- Container ---------- */
.useflow-steps-group {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.useflow-steps-group:hover {
  box-shadow: 0 18px 48px rgba(0,0,0,0.08);
}

/* ---------- Section Titles ---------- */
.useflow-section-title {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 600;
  color: #222;
  margin-bottom: 28px;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.useflow-section-title:hover {
  color: #007bff; /* blue accent on hover */
}

/* ---------- Step Cards ---------- */
.useflow-step-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
  border-radius: 18px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
  border: 1px solid transparent;
}

.useflow-step-card:hover {
  transform: translateY(-2px);
  border: 1px solid #007bff; /* blue outline */
  box-shadow: 0 8px 20px rgba(0,123,255,0.15);
}

/* Step card text */
.useflow-step-info h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: #111;
}

.useflow-step-info p {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.55;
}

/* ---------- Numbered Steps ---------- */
.useflow-number-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-radius: 16px;
  background: #f7f8fa;
  transition: background 0.3s ease, transform 0.25s ease;
}

.useflow-number-item:hover {
  background: #e6f0ff; /* soft blue background on hover */
  transform: translateX(2px);
}

.useflow-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.useflow-number-item:hover .useflow-step-number {
  background: #007bff; /* blue for numbers on hover */
}

/* ---------- WhatsApp Button (Green) ---------- */
.useflow-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  background: #25d366; /* green button */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.useflow-whatsapp-btn:hover {
  background: #20b859; /* slightly darker green */
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37,211,102,0.25);
}

/* WhatsApp icon */
.useflow-whatsapp-icon {
  width: 20px;
  height: 20px;
  filter: brightness(1);
}

/* ---------- Divider ---------- */
.useflow-divider {
  margin: 36px 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

/* ---------- Typography Smooth ---------- */
.useflow-install-wrap,
.useflow-step-info,
.useflow-number-item,
.useflow-whatsapp-btn {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}

/* ---------- Icons ---------- */
.useflow-step-icon img,
.useflow-title-icon,
.useflow-whatsapp-icon {
  object-fit: contain;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.useflow-step-icon img:hover,
.useflow-whatsapp-icon:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .useflow-step-card,
  .useflow-number-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .useflow-main-title {
    font-size: 2rem;
  }

  .useflow-section-title {
    font-size: 1.4rem;
  }
}
/* ============ DARK MODE ICON INVERSION ============ */
@media (prefers-color-scheme: dark) {
  /* Invert all icons */
  .useflow-step-icon img,
  .useflow-title-icon,
  .useflow-whatsapp-icon {
    filter: invert(1) brightness(1.2);
  }

  /* Container background */
  .useflow-steps-group {
    background: #1a1a1a;
    box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  }

  /* Text colors */
  .useflow-install-wrap,
  .useflow-step-info h3,
  .useflow-step-info p,
  .useflow-number-item p,
  .useflow-section-title {
    color: #eee;
  }

  /* Step cards */
  .useflow-step-card {
    background: #222;
    border: 1px solid #333;
  }

  .useflow-step-card:hover {
    border-color: #007bff;
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
  }

  /* Numbered steps */
  .useflow-number-item {
    background: #2b2b2b;
  }

  .useflow-number-item:hover {
    background: #003366; /* soft dark blue */
  }

  .useflow-step-number {
    background: #444;
    color: #fff;
  }

  .useflow-number-item:hover .useflow-step-number {
    background: #007bff;
  }

  /* Divider */
  .useflow-divider {
    background: linear-gradient(to right, transparent, #555, transparent);
  }
}


  /* ================= Glassmorphic Toast ================= */
#toast-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  min-width: 260px;
  max-width: 380px;
  padding: 14px 22px;
  color: #fff;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.5s forwards, fadeOut 0.5s 2.5s forwards;
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.toast.success {
  background: rgba(72, 180, 97, 0.2);
  border: 1px solid rgba(72, 180, 97, 0.4);
  color: #e6ffed;
  box-shadow: 0 8px 24px rgba(72, 180, 97, 0.5);
}

.toast.error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #ffe6e6;
  box-shadow: 0 8px 24px rgba(244, 67, 54, 0.5);
}

@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeOut { to { opacity: 0; transform: translateY(50px); } }
