/* ===== CSS Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0f172a;
  --primary-foreground: #f8fafc;
  --background: #ffffff;
  --foreground: #0f172a;
  --muted: #f0eeee;
  --muted-foreground: #64748b;
  --accent: #6366f1;
  --accent-foreground: #ffffff;
  --whatsapp: #25d366;
  --telegram: #0088cc;
  --facebook: #1877f2;
  --instagram: #e4405f;
  --border: #e2e8f0;
  --success: #22c55e;
  --warning: #eab308;
  --destructive: #ef4444;
  --card-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --card-hover-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --section-max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== Layout ===== */
.section-container {
  max-width: var(--section-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.flex-col-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.wdm-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-left: -1px;
}

.wdm-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===============================
   DESKTOP NAV
================================ */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0.5rem 1rem;
  font-size: 20px;
  font-weight: 500;
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  color: var(--foreground);
}

.nav-item:hover,
.nav-item:focus {
  background: rgba(99, 102, 241, 0.08);
  color: var(--accent);
}

.nav-chevron {
  width: 12px;
  height: 12px;
  margin-left: 4px;
  transition: transform 0.2s;
}

/* Active dropdown trigger */
.nav-dropdown-trigger.active {
  background: #dbeafe;
  color: #2563eb;
  border-radius: 9999px;
}

.nav-dropdown-trigger.active .nav-chevron {
  transform: rotate(180deg);
}

/* ===============================
   DROPDOWN WRAPPER
================================ */
.nav-dropdown-wrapper {
  position: relative;
}

/* ===============================
   DROPDOWN PANEL
================================ */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 24px 28px;
  z-index: 100;
  max-height: 560px;
  overflow-y: auto;
  opacity: 0;
  transform-origin: top center;
  animation: dropdownFadeIn 0.2s ease forwards;
}
.nav-dropdown {
  width: 720px;
  max-width: 90vw;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 20px;
  box-sizing: border-box;
}

.nav-dropdown.open {
  display: block;
}

/* ===============================
   DROPDOWN ANIMATION
================================ */
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===============================
   DROPDOWN ARROW
================================ */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--background);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

/* ===============================
   DROPDOWN GRID
================================ */
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 22px;
}

/* ===============================
   DROPDOWN ITEM
================================ */
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  padding: 6px 0;
}

.dropdown-item > div {
  min-width: 0;
}

/* ===============================
   ICON BOX
================================ */
.dropdown-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eaf7f1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.dropdown-icon i {
  font-size: 18px;
  color: #0f9d7a;
}

/* ===============================
   TEXT STYLES
================================ */
.dropdown-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.dropdown-desc {
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}

/* ===============================
   HOVER EFFECTS
================================ */
.dropdown-item:hover .dropdown-icon {
  background: #dff3eb;
}

.dropdown-item:hover .dropdown-title {
  color: #0f9d7a;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .nav-dropdown {
    left: 0;
    transform: none;
  }
}

@media (max-width: 768px) {
  .dropdown-grid {
    grid-template-columns: 1fr;
  }
}




/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.btn-login:hover {
  background: rgba(99,102,241,0.1);
  color: var(--accent);
}

.btn-trial-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 22px 30px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 1px 3px rgba(99,102,241,0.3);
  transition: all 0.2s;
  margin-right: -40px;
}

.btn-trial-sm:hover {
  background: rgba(99,102,241,0.9);
  box-shadow: 0 4px 12px rgba(99,102,241,0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: background 0.2s;
}

.mobile-menu-btn:hover { background: var(--muted); }
.mobile-menu-btn svg { width: 24px; height: 24px; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--background);
  z-index: 49;
  overflow-y: auto;
  padding: 1.5rem;
}

.mobile-menu.open { display: block; }

.mobile-menu a, .mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.15s;
}

.mobile-menu a:hover, .mobile-menu button:hover {
  background: var(--muted);
}

.mobile-menu .mobile-submenu {
  padding-left: 1rem;
  display: none;
}

.mobile-menu .mobile-submenu.open { display: block; }

.mobile-menu .mobile-submenu a {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.mobile-menu-actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu-actions .btn-trial-sm {
  width: 100%;
  height: 48px;
  font-size: 1rem;
}

.mobile-menu-actions .btn-login {
  width: 100%;
  height: 48px;
  font-size: 1rem;
  text-align: center;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary), rgba(15,23,42,0.95));
}

.hero-bg-orb-1 {
  position: absolute;
  top: 80px; left: 40px;
  width: 288px; height: 288px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.1;
}

.hero-bg-orb-2 {
  position: absolute;
  bottom: 80px; right: 40px;
  width: 384px; height: 384px;
  background: var(--whatsapp);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.1;
}

.hero .section-container { position: relative; }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(99,102,241,0.2);
  color: var(--accent);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent), var(--whatsapp));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 17px;
  color: rgba(248,250,252,0.8);
  margin-bottom: 2rem;
  max-width: 560px;
  text-align: justify;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 56px;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 4px 14px rgba(99,102,241,0.3);
  transition: all 0.2s;
}

.btn-primary-lg:hover {
  background: rgba(99,102,241,0.9);
  box-shadow: 0 8px 25px rgba(99,102,241,0.4);
  transform: translateY(-2px);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 56px;
  padding: 0 2.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 2px solid rgba(248,250,252,0.3);
  color: var(--primary-foreground);
  background: transparent;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  background: rgba(248,250,252,0.1);
}

.btn-primary-lg svg, .btn-outline-lg svg { width: 20px; height: 20px; }

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  color: rgba(248,250,252,0.6);
  font-size: 0.875rem;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-check svg { width: 20px; height: 20px; color: var(--whatsapp); }

/* Hero Chat Preview */
.hero-preview {
  position: relative;
}

.chat-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid rgba(248,250,252,0.1);
}

.chat-card-inner {
  background: var(--background);
  padding: 1rem;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-header-icon {
  width: 32px; height: 32px;
  border-radius: 0.5rem;
  background: rgba(99,102,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header-icon svg { width: 16px; height: 16px; color: var(--accent); }

.chat-header-title { font-weight: 600; font-size: 0.9375rem; }

.chat-dots { display: flex; gap: 0.5rem; }
.chat-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.chat-dot-red { background: var(--destructive); }
.chat-dot-yellow { background: var(--warning); }
.chat-dot-green { background: var(--success); }

.chat-messages { display: flex; flex-direction: column; gap: 0.75rem; }

.chat-msg {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.chat-msg-active {
  background: rgba(99,102,241,0.05);
  border: 1px solid rgba(99,102,241,0.2);
}

.chat-msg-normal {
  background: var(--muted);
  border: 1px solid transparent;
}

.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--whatsapp));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.chat-msg-body { flex: 1; min-width: 0; }

.chat-msg-name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-msg-name { font-weight: 500; font-size: 0.875rem; }
.chat-msg-name-row svg { width: 16px; height: 16px; }
.chat-msg-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-unread {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Stats floating card */
.stats-float {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--background);
  border-radius: 0.75rem;
  box-shadow: var(--card-hover-shadow);
  padding: 1rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stats-float-icon {
  width: 48px; height: 48px;
  border-radius: 0.5rem;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-float-icon svg { width: 24px; height: 24px; color: var(--success); }

.stats-float-value { font-size: 1.5rem; font-weight: 700; }
.stats-float-label { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== Channel Cards Section ===== */
.channels { background: rgba(241,245,249,0.3); }

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;

  background: linear-gradient(
    90deg,
    #2563eb,
    #38d39f,
    #7c3aed,
    #2563eb
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  animation: headingColorFlow 7s ease-in-out infinite;
}

@keyframes headingColorFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.section-heading p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto;
}

.text-accent { color: var(--accent); }

.channel-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
  box-shadow: var(--card-hover-shadow);
  transform: translateY(-2px);
}

.channel-card { text-align: center; }

.channel-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s;
  animation: pulseGlow 2.2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99,102,241,0.35);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 14px rgba(99,102,241,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99,102,241,0);
  }
}


.feature-card:hover .channel-icon { transform: scale(1.1); }

.channel-icon svg { width: 32px; height: 32px; color: #fff; }
.bg-whatsapp { background: var(--whatsapp); }
.bg-telegram { background: var(--telegram); }
.bg-facebook { background: var(--facebook); }
.bg-instagram { background: var(--instagram); }

.channel-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.channel-card p { color: var(--muted-foreground); margin-bottom: 0.75rem; }
.channel-card .channel-stat { font-size: 0.875rem; color: var(--accent); font-weight: 500; }

/* ===== Team Section ===== */
.team-grid { display: grid; gap: 2rem; }

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  animation: teamPulse 2.8s ease-in-out infinite;
}

@keyframes teamPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99,102,241,0.25);
  }
  60% {
    transform: scale(1.06);
    box-shadow: 0 0 0 10px rgba(99,102,241,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(99,102,241,0);
  }
}

.team-icon svg { width: 28px; height: 28px; color: #fff; }

.team-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card > p { color: var(--muted-foreground); margin-bottom: 1rem; flex: 1; }

.team-card ul { margin-bottom: 1.5rem; }
.team-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.team-card li svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.2s;
}

.learn-more:hover { color: rgba(99,102,241,0.8); }
.learn-more svg {
  width: 16px; height: 16px;
  transition: transform 0.2s;
}
.feature-card:hover .learn-more svg { transform: translateX(4px); }

/* ===== Features Grid ===== */
.features-grid { display: grid; gap: 1.5rem; }

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 0.5rem;
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s;
}

.feature-card:hover .feat-icon { background: rgba(99,102,241,0.2); }

.feat-icon svg { width: 24px; height: 24px; color: var(--accent); }

.feat-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.feat-desc { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== Why Choose Section ===== */
.why-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.why-heading h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.why-heading > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.why-items { display: grid; gap: 1.5rem; }

.why-item {
  display: flex;
  gap: 1rem;
}

.why-item-icon {
  width: 40px; height: 40px;
  border-radius: 0.5rem;
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item-icon svg { width: 20px; height: 20px; color: var(--accent); }

.why-item h3 { font-weight: 600; margin-bottom: 0.25rem; }
.why-item p { font-size: 0.875rem; color: var(--muted-foreground); }

/* Stats Panel */
.stats-panel {
  position: relative;
}
.stats-panel-inner {
  position: relative;
  padding: 32px;
  border-radius: 20px;
  overflow: hidden;

  background:
  
    url("https://images.unsplash.com/photo-1557683316-973673baf926")
    center / cover no-repeat;
}


.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item { text-align: center; }
.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}
.stat-label { color: rgba(248,250,252,0.7); }

.stats-orb-1 {
  position: absolute;
  top: -16px; right: -16px;
  width: 96px; height: 96px;
  background: rgba(99,102,241,0.2);
  border-radius: 50%;
  filter: blur(16px);
}

.stats-orb-2 {
  position: absolute;
  bottom: -16px; left: -16px;
  width: 128px; height: 128px;
  background: rgba(37,211,102,0.2);
  border-radius: 50%;
  filter: blur(16px);
}

/* ===== Testimonials ===== */
.testimonials { background: rgba(241,245,249,0.3); }

.testimonial-grid { display: grid; gap: 1.5rem; margin-bottom: 3rem; }

.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.testimonial-stars svg {
  width: 20px; height: 20px;
  fill: var(--warning);
  color: var(--warning);
}

.testimonial-quote {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--whatsapp));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
  font-weight: 600;
}

.testimonial-name { font-weight: 600; }
.testimonial-role { font-size: 0.875rem; color: var(--muted-foreground); }

/* ===== CTA Section ===== */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary));
  position: relative;
  overflow: hidden;
}

.cta-orb-1 {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.15;
}

.cta-orb-2 {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 256px; height: 256px;
  background: var(--whatsapp);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.1;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  color: rgba(248,250,252,0.8);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(248,250,252,0.5);
}

/* ===== Footer ===== */
.footer {
     background: linear-gradient(180deg, #4f7fc8 0%, #5f94db 50%, #6aa3e8 100%);
  color: var(--primary-foreground);
  padding: 4rem 0 0;
}

.footer-grid { display: grid; gap: 2rem; margin-bottom: 3rem; }

.footer-brand p {
  color: white;
  margin: 1rem 0 1.5rem;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social {
  width: 40px; height: 40px;
  border-radius: 0.5rem;
  background: rgba(248,250,252,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social:hover { background: var(--accent); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 22px;
}

.footer-col a {
  display: block;
  padding: 0.25rem 0;
  color: white;
  font-size: 17px;
  transition: color 0.2s;
}

.footer-col a:hover { color: black; }

.footer-bottom {
  border-top: 1px solid rgba(248,250,252,0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 17px;
  color:white;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 17px;
  color: white;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  margin-top: -30px;
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
  .cta-buttons { flex-direction: row; }
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .why-items { grid-template-columns: 1fr 1fr; }
  .logo-text { display: inline; }
}

@media (max-width: 639px) {
  .logo-text { display: none; }
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .section-heading h2, .why-heading h2, .cta h2 { font-size: 2.25rem; }
  .hero-grid { padding: 6rem 0; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-panel-inner { padding: 3rem; }
  .stat-value { font-size: 3rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; padding: 8rem 0; }
  .desktop-nav { display: flex; }
  .header-actions { display: flex; }
  .mobile-menu-btn { display: none; }
  .channel-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

.check-icon {
  width: 16px; height: 16px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* ===== Platform Overview Page ===== */

/* Page Hero (lighter gradient) */
.page-hero {
  background: linear-gradient(135deg, rgba(241,245,249,0.5), var(--background));
  padding: 5rem 0;
}

.page-hero-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-center h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-hero-center > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Channel Badges Row */
.channel-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.channel-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--background);
  border-radius: 9999px;
  border: 1px solid var(--border);
}

.channel-badge-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-badge-icon svg { width: 16px; height: 16px; color: #fff; }
.channel-badge span { font-weight: 500; }

/* Primary Button (medium) */
.btn-primary-md {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
      background: linear-gradient(90deg, #4f8df7, #38d39f);
  color: var(--accent-foreground);
  box-shadow: 0 2px 8px rgba(99,102,241,0.3);
  transition: all 0.2s;
}

.btn-primary-md:hover {
  background: rgba(99,102,241,0.9);
  box-shadow: 0 4px 16px rgba(99,102,241,0.4);
  transform: translateY(-2px);
}

.btn-primary-md svg { width: 20px; height: 20px; }

/* How It Works Steps */
.steps-grid {
  display: grid;
  gap: 2rem;
}

.step-item {
  position: relative;
}

.step-number {
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(99,102,241,0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-item p {
  color: var(--muted-foreground);
}

.step-connector {
  display: none;
  position: absolute;
  top: 32px;
  left: 100%;
  width: 100%;
  height: 1px;
  background: var(--border);
  transform: translateX(-50%);
}

/* Module Cards */
.module-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.module-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.module-card:hover {
  box-shadow: var(--card-hover-shadow);
}

.module-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.module-icon {
  width: 56px; height: 56px;
  border-radius: 0.75rem;
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.module-icon svg { width: 28px; height: 28px; color: var(--accent); }

.module-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.module-card > .module-grid > div > p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.module-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.module-checklist li svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.module-placeholder {
  background: rgba(241,245,249,0.5);
  border-radius: 0.75rem;
  height: 256px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-placeholder svg {
  width: 96px; height: 96px;
  color: rgba(100,116,139,0.2);
}

/* Security Section */
.security-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.security-panel {
  background: linear-gradient(135deg, var(--primary), rgba(15,23,42,0.9));
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
}

.security-panel svg {
  width: 96px; height: 96px;
  color: rgba(248,250,252,0.3);
  margin: 0 auto 1.5rem;
}

.security-panel p {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-foreground);
}

/* Page CTA small */
.page-cta {
  background: rgba(241,245,249,0.3);
  text-align: center;
}

.page-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-cta p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* ===== Updated Footer (Detailed) ===== */
.footer-cta-section {
  border-bottom: 1px solid rgba(248,250,252,0.1);
  padding: 5rem 0;
}

.footer-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.footer-cta-inner h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

.footer-cta-inner > p {
  color: rgba(248,250,252,0.7);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-footer-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 2px 8px rgba(99,102,241,0.3);
  transition: all 0.2s;
}

.btn-footer-primary:hover {
  background: rgba(99,102,241,0.9);
}

.btn-footer-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid rgba(248,250,252,0.2);
  color: var(--primary-foreground);
  background: transparent;
  transition: all 0.2s;
}

.btn-footer-outline:hover {
  background: rgba(248,250,252,0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.footer-main {
  padding: 3rem 0 4rem;
}

.footer-grid-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-brand-detailed {
  grid-column: 1 / -1;
}

.footer-brand-detailed p {
  color: rgba(248,250,252,0.7);
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248,250,252,0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-contact-links a:hover { color: var(--primary-foreground); }
.footer-contact-links a svg { width: 20px; height: 20px; }

/* Responsive for steps and modules */
@media (min-width: 640px) {
  .footer-cta-buttons { flex-direction: row; }
}

@media (min-width: 768px) {
  .page-hero-center h1 { font-size: 3rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .security-grid { grid-template-columns: 1fr 1fr; }
  .page-cta h2 { font-size: 2.25rem; }
  .footer-grid-detailed { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
  .footer-brand-detailed { grid-column: 1 / 2; }
}

@media (min-width: 1024px) {
  .page-hero-center h1 { font-size: 3.5rem; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .step-connector { display: block; }
}

/* ===== Campaign Manager Page ===== */

/* Two-column hero */
.page-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.page-hero-grid h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-hero-grid > div > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Campaign Stats Card */
.campaign-stats-card {
  background: var(--background);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.campaign-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.campaign-stat-box {
  padding: 1.25rem;
  background: var(--muted);
  border-radius: 0.5rem;
  text-align: center;
}

.campaign-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.campaign-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Campaign Types Grid */
.campaign-types-grid {
  display: grid;
  gap: 1.5rem;
}

.campaign-type-icon {
  width: 48px; height: 48px;
  border-radius: 0.5rem;
  background: rgba(99,102,241,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.campaign-type-icon svg {
  width: 24px; height: 24px;
  color: var(--accent);
}

/* Campaign Features Checklist Grid */
.campaign-features-grid {
  display: grid;
  gap: 1rem;
}

.campaign-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.campaign-feature-item svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Responsive for campaign page */
@media (min-width: 640px) {
  .campaign-types-grid { grid-template-columns: 1fr 1fr; }
  .campaign-features-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .page-hero-grid h1 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .page-hero-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-grid h1 { font-size: 3.5rem; }
  .campaign-types-grid { grid-template-columns: repeat(4, 1fr); }
  .campaign-features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Chatbot Builder Page ===== */

/* Flow preview card */
.chatbot-flow-card {
  background: var(--background);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.chatbot-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flow-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(99,102,241,0.1);
  border: 2px solid var(--accent);
  border-radius: 0.5rem;
  font-weight: 500;
}

.flow-trigger svg {
  width: 20px; height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.flow-branch {
  margin-left: 2rem;
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flow-step {
  padding: 1rem;
  background: var(--muted);
  border-radius: 0.5rem;
}

.flow-step-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: block;
  margin-bottom: 0.25rem;
}

.flow-step p {
  font-weight: 500;
}

/* Centered use-case cards */
.chatbot-use-card {
  text-align: center;
}

.chatbot-icon-center {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Solutions – Sales Teams Page ===== */

.solution-hero-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.solution-hero-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.solution-subtitle {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Stats row – 3 cards side by side */
.solution-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-self: center;
}

.solution-stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.solution-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.solution-stat-label {
  font-size: 0.875rem;
  color: #000;
}

/* Challenges vs Solutions – two-column */
.challenges-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.challenges-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.challenges-list,
.solutions-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.challenge-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.challenge-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: #ef4444;
  margin-top: 6px;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.solution-item svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--primary);
  margin-top: 2px;
}

/* CTA with two buttons */
.page-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-outline-md {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border);
  color: var(--foreground);
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-md svg { width: 20px; height: 20px; }

.btn-outline-md:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

/* Responsive – Solutions Sales */
@media (max-width: 768px) {
  .solution-stats-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .solution-stat-card {
    padding: 1.25rem 1rem;
  }

  .solution-stat-value {
    font-size: 2rem;
  }

  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== Solutions – Support Teams Page ===== */

/* Green gradient hero icon */
.solution-hero-icon-support {
  background: linear-gradient(135deg, var(--whatsapp), #059669);
}

/* Card-style challenge items (red tint) */
.challenge-item-card {
  padding: 1rem;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: 0.5rem;
}

/* Card-style solution items (green tint) */
.solution-item-card {
  padding: 1rem;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: 0.5rem;
}

/* ===== Solutions – Marketing Teams Page ===== */

/* Pink/Instagram gradient hero icon */
.solution-hero-icon-marketing {
  background: linear-gradient(135deg, var(--instagram), #db2777);
}

/* ===== Solutions – Agencies Page ===== */

/* Purple/Violet gradient hero icon */
.solution-hero-icon-agencies {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

/* ===== Features Page ===== */

/* Sticky Category Navigation */
.features-category-nav {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}

.features-category-tabs {
  display: flex;
  overflow-x: auto;
  gap: 0.5rem;
  padding: 1rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.features-category-tabs::-webkit-scrollbar {
  display: none;
}

.features-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--muted);
  color: var(--muted-foreground);
}

.features-tab:hover {
  background: rgba(241, 245, 249, 0.8);
}

.features-tab.active {
  background: var(--accent);
  color: var(--accent-foreground);
}

.features-tab svg {
  width: 16px;
  height: 16px;
}

/* Feature Category Sections */
.feature-category {
  margin-bottom: 4rem;
}

.feature-category:last-child {
  margin-bottom: 0;
}

.feature-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-category-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-category-header p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

.feature-category-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-category-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.feature-category-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Lighter outline button for "See X in action" CTAs */
.btn-outline-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  color: var(--foreground);
  background: var(--background);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-action:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(99, 102, 241, 0.05);
}

.btn-outline-action svg {
  width: 16px;
  height: 16px;
}

/* More Features Checklist Grid */
.more-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.more-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.more-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.more-feature-item span {
  font-size: 0.9375rem;
}

/* Responsive – Features Page */
@media (min-width: 640px) {
  .more-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .more-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .more-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Pricing Page ===== */

/* Billing Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pricing-toggle-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.pricing-toggle-label.active {
  color: var(--foreground);
}

.pricing-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--muted);
  border-radius: 9999px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.pricing-toggle-switch.active {
  background: var(--accent);
  border-color: var(--accent);
}

.pricing-toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--background);
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.pricing-toggle-switch.active .pricing-toggle-knob {
  transform: translateX(22px);
}

.pricing-save-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(34, 197, 94, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

/* Pricing Cards Grid */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }
}


.pricing-card {
  position: relative;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


.pricing-card-popular {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.15);
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-card-header h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 0.5rem;
   background: linear-gradient(90deg, #4f8df7, #38d39f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.pricing-card-desc {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}

.pricing-amount.pricing-custom {
  font-size: 2rem;
}

.pricing-period {
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* Feature List inside pricing cards */
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;

  flex: 1; /* ⭐ THIS LINE FIXES THE BUTTON */
}
.pricing-card a {
  margin-top: auto;
}


.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.pricing-feature-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-feature-item.included svg {
  color: var(--success);
}

.pricing-feature-item.excluded {
  color: var(--muted-foreground);
}

.pricing-feature-item.excluded svg {
  color: var(--muted-foreground);
  opacity: 0.5;
}

/* Promotional Offer Banner */
.pricing-promo-banner {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
}

.pricing-promo-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.pricing-promo-item {
  text-align: center;
}

.pricing-promo-icon-sm {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 0.75rem;
}

.pricing-promo-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pricing-promo-item p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Compare Plans Table */
.pricing-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--background);
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.pricing-compare-table th {
  background: var(--muted);
  font-weight: 600;
  font-size: 0.875rem;
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.pricing-table-feature-col {
  min-width: 200px;
}

.pricing-table-highlight {
  background: rgba(99, 102, 241, 0.05);
}

.pricing-compare-table thead .pricing-table-highlight {
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent);
  font-weight: 700;
}

.pricing-compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Circular check icon for table */
.pricing-check-circle {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  color: #60a5fa;
}

/* X text for unavailable features */
.pricing-x-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  opacity: 0.5;
}

/* FAQ List (single column, stacked) */
.pricing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-faq-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
}

.pricing-faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #60a5fa;
}

.pricing-faq-icon svg {
  width: 32px;
  height: 32px;
}

.pricing-faq-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-faq-content p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Responsive – Pricing Page */
@media (min-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-promo-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Industries Page ===== */

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.industry-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.industry-card:hover {
  box-shadow: var(--card-hover-shadow);
  border-color: transparent;
}

.industry-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.industry-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

/* Gradient backgrounds for each industry */
.industry-icon-ecommerce {
  background: linear-gradient(135deg, #6366f1, #2563eb);
}

.industry-icon-education {
  background: linear-gradient(135deg, #10b981, #0d9488);
}

.industry-icon-healthcare {
  background: linear-gradient(135deg, #f43f5e, #db2777);
}

.industry-icon-realestate {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.industry-icon-retail {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.industry-icon-travel {
  background: linear-gradient(135deg, #0ea5e9, #0891b2);
}

.industry-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.industry-desc {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap 0.2s;
}

.industry-link:hover {
  gap: 0.75rem;
}

.industry-link svg {
  width: 16px;
  height: 16px;
}

/* Responsive – Industries Page */
@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Demo & Contact Pages ===== */

/* Two-column page grid */
.form-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.form-page-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

/* Form styles */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  height: 40px;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group textarea {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 48px;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit-btn:hover {
  background: rgba(99, 102, 241, 0.9);
  transform: translateY(-1px);
}

.form-submit-btn svg {
  width: 20px;
  height: 20px;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.form-disclaimer a {
  text-decoration: underline;
}

/* Demo page – meta badges */
.demo-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.demo-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

.demo-meta-item svg {
  width: 20px;
  height: 20px;
}

/* Demo page – checklist */
.demo-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.demo-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.demo-checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Demo page – trust section */
.demo-trust {
  padding: 1.5rem;
  background: var(--muted);
  border-radius: 0.75rem;
}

.demo-trust p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.demo-avatars {
  display: flex;
}

.demo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--whatsapp));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  border: 2px solid var(--background);
  margin-left: -8px;
}

.demo-avatar:first-child {
  margin-left: 0;
}

.demo-avatar-count {
  background: var(--muted);
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

/* Contact page – info card */
.contact-info-card {
  background: var(--muted);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

a.contact-info-item:hover {
  color: var(--foreground);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.contact-info-icon-wa {
  background: rgba(37, 211, 102, 0.1);
}

.contact-info-icon-wa svg {
  color: var(--whatsapp);
}

.contact-info-label {
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.9375rem;
}

.contact-info-value {
  font-size: 0.875rem;
}

/* Responsive – Form Pages */
@media (min-width: 1024px) {
  .form-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* ===== Industry Detail Pages ===== */

.industry-detail-hero {
  background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
}

.industry-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.industry-detail-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.industry-detail-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1rem;
}

.industry-stat-card {
  text-align: center;
  background: var(--background);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.industry-stat-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.industry-stat-label {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* Use cases grid */
.industry-usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.industry-usecase-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  font-size: 0.9375rem;
}

.industry-usecase-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Key features grid */
.industry-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.industry-feature-card {
  text-align: center;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

.industry-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.industry-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.industry-feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Responsive – Industry Detail */
@media (min-width: 640px) {
  .industry-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .industry-usecases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .industry-features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}







/*jidnyasa css 06/02/2026*/
/* ===============================
   UI/UX TEXT SECTION
================================ */

.ca-uiux-text-wrap {
  padding: 60px 28px;
  background: linear-gradient(90deg, #4f8df7, #38d39f);
  font-family: "Inter", system-ui, sans-serif;
  color: #ffffff;
  text-align: center; /* 👈 centers heading & paragraph */
}

.ca-uiux-heading {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 12px;
}

.ca-uiux-desc {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 auto;      /* 👈 centers paragraph block */
  max-width: 620px;   /* 👈 keeps it readable */
  opacity: 0.95;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 600px) {
  .ca-uiux-text-wrap {
    padding: 18px 20px;
  }

  .ca-uiux-heading {
    font-size: 18px;
  }

  .ca-uiux-desc {
    font-size: 14px;
  }
}





.chat-features-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.chat-features-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 2rem auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.chat-features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.chat-features-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
 background: linear-gradient(90deg, #4f8df7, #38d39f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  
}

.chat-features-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.chat-features-tab {
  padding: 1rem 2rem;
  border: none;
  background: #f7fafc;
  border-radius: 12px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.chat-features-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #edf2f7;
}

.chat-features-tab.chat-features-active {
  background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.chat-features-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 2rem auto;
  max-width: 200px;
}

.chat-features-content {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.chat-features-panel {
  display: none;
  padding: 3rem;
}

.chat-features-panel.chat-features-show {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chat-features-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.chat-features-text h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
  border-radius: 2px;
}

.chat-features-text p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.chat-features-text strong {
  color: #2d3748;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.chat-features-image {
  position: relative;
}

.chat-features-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.chat-features-image:hover img {
  transform: translateY(-5px);
}

/* Platform-specific colors for tabs */
.chat-features-tab[data-tab="whatsapp"] {
  border-left: 4px solid #25D366;
}

.chat-features-tab[data-tab="telegram"] {
  border-left: 4px solid #0088cc;
}

.chat-features-tab[data-tab="facebook"] {
  border-left: 4px solid #1877F2;
}

/* Responsive */
@media (max-width: 1024px) {
  .chat-features-panel.chat-features-show {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .chat-features-image {
    order: -1;
  }
  
  .chat-features-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .chat-features-tabs {
    flex-direction: column;
    align-items: stretch;
  }
  
  .chat-features-panel {
    padding: 2rem 1.5rem;
  }
  
  .chat-features-header h2 {
    font-size: 1.75rem;
  }
}



.pricing-feature-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.pricing-feature-item span {
  color: #6b7280;
  font-weight: 500;
}



/* ================= PRICING HEADER ================= */

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #0f766e;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pricing-title {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.pricing-subtitle {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 32px;
}

/* ================= TOGGLE ================= */

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  background: #f8fafc;
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto;
}

.pricing-tab {
  border: none;
  padding: 10px 28px;
  border-radius: 10px;
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pricing-tab.active {
  background: #0f766e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .pricing-title {
    font-size: 32px;
  }

  .pricing-subtitle {
    font-size: 16px;
  }
}
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  background: #f8fafc;
  padding: 6px;
  border-radius: 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  border: none;
  padding: 10px 28px;
  border-radius: 10px;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  color: #64748b;
}

.pricing-tab.active {
  background: #0f766e;
  color: #fff;
}

.pricing-section {
  display: none;
}

.pricing-section.active {
  display: block;
}
/* ================= PRICING HEADING ================= */

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-title {
  font-size: 44px;
  font-weight: 700;
 background: linear-gradient(90deg, #4f8df7, #38d39f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 18px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-title {
    font-size: 32px;
  }

  .pricing-subtitle {
    font-size: 16px;
  }
}










    
/* ================= FLOW BUILDER ================= */
.flow-builder {
    max-width: var(--section-max-width);
    margin: 0 auto;
    padding: 80px 1.5rem;
}

.flow-builder-container {
    width: 100%;
}

/* Header */
.flow-builder-header {
    text-align: center;
    margin-bottom: 60px;
}

.flow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #0f766e;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.flow-badge-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.flow-builder-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.flow-builder-header .text-gradient {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flow-builder-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Layout */
.flow-builder-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Phone Frame */
.flow-chat-preview {
    display: flex;
    justify-content: center;
}

.flow-phone-frame {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    overflow: hidden;
}

.flow-phone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #0f766e;
    color: #fff;
}

.flow-phone-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.flow-phone-info {
    display: flex;
    flex-direction: column;
}

.flow-phone-name {
    font-weight: 600;
    font-size: 15px;
}

.flow-phone-status {
    font-size: 12px;
    opacity: 0.8;
}

.flow-phone-body {
    padding: 20px;
    background: #f0f2f5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 360px;
}

/* Messages */
.flow-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
}

.flow-msg p {
    margin: 0 0 2px;
}

.flow-msg-time {
    display: block;
    font-size: 11px;
    opacity: 0.6;
    text-align: right;
    margin-top: 4px;
}

.flow-msg-bot {
    background: #ffffff;
    color: #1e293b;
    border-radius: 4px 12px 12px 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    align-self: flex-start;
}

.flow-msg-user {
    background: #dcf8c6;
    color: #1e293b;
    border-radius: 12px 4px 12px 12px;
    align-self: flex-end;
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.flow-msg-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 85%;
    align-self: flex-start;
}

.flow-msg-btn {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #0f766e;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-align: left;
}

.flow-msg-btn:hover {
    background: #ecfdf5;
    border-color: #0f766e;
}

.flow-msg-btn i {
    font-size: 12px;
    opacity: 0.7;
}

/* Feature Cards */
.flow-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.flow-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.25s ease;
}

.flow-feature-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.flow-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 16px;
}

.flow-feature-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.flow-feature-text p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Flow Builder Image */
.flow-builder-image {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.flow-builder-image img {
    width: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .flow-builder-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .flow-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .flow-builder {
        padding: 60px 1.5rem;
    }

    .flow-builder-header h2 {
        font-size: 32px;
    }

    .flow-builder-header p {
        font-size: 16px;
    }

    .flow-features {
        grid-template-columns: 1fr;
    }

    .flow-phone-body {
        min-height: 280px;
    }
}

    .faq-section {
  padding: 80px 20px;
  background: #f9fafb;
  font-family: "Inter", system-ui, sans-serif;
      background: linear-gradient(135deg, #f0f4ff, #e6f0ff);
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.faq-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
   background: linear-gradient(90deg, #4f8df7, #38d39f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.faq-header p {
  color: #6b7280;
  font-size: 16px;
}

.faq-list {
  max-width: 1115px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: #f3f4f6;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}



/* =========================================================
   📱 GLOBAL MOBILE RESPONSIVE (ALL PHONES ≤ 768px)
========================================================= */
@media (max-width: 768px) {

  /* ===== GLOBAL SPACING ===== */
  .section-container {
    padding: 0 1rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  /* ===== HEADER & NAV ===== */
  .desktop-nav,
  .header-actions {
    display: none !important;
  }

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

  .header-inner {
    height: 64px;
  }

  .wdm-logo img {
    height: 42px;
  }

  /* ===== MOBILE MENU ===== */
  .mobile-menu {
    top: 64px;
    padding: 1rem;
  }

  .mobile-menu a,
  .mobile-menu button {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }

  /* ===== HERO SECTION ===== */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 0 3rem;
  }

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    text-align: center;
  }

  .hero-description {
    font-size: 0.95rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-checks {
    justify-content: center;
    text-align: center;
    gap: 0.75rem;
  }

  /* Hide floating stats on small screens */
  .stats-float {
    display: none;
  }

  /* ===== CHAT PREVIEW ===== */
  .chat-card-inner {
    padding: 0.75rem;
  }

  .chat-msg {
    padding: 0.5rem;
  }

  .chat-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  /* ===== GRID SYSTEMS ===== */
  .channel-grid,
  .features-grid,
  .team-grid,
  .testimonial-grid,
  .industries-grid,
  .campaign-types-grid,
  .campaign-features-grid {
    grid-template-columns: 1fr !important;
    gap: 60px;
  }


  /* ===== WHY SECTION ===== */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-items {
    grid-template-columns: 1fr;
  }

  /* ===== STATS PANEL ===== */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  /* ===== CTA ===== */
  .cta h2 {
    font-size: 1.75rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  /* ===== FOOTER ===== */
  .footer-grid,
  .footer-grid-detailed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand,
  .footer-brand-detailed {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* ===== PRICING ===== */
  .pricing-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-title {
    font-size: 28px;
  }

  .pricing-subtitle {
    font-size: 15px;
  }

  .pricing-toggle {
    flex-direction: column;
    gap: 8px;
  }

  /* ===== CHAT FEATURES TABS ===== */
  .chat-features-tabs {
    flex-direction: column;
  }

  .chat-features-panel.chat-features-show {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .chat-features-panel {
    padding: 1.5rem;
  }

  .chat-features-text h3 {
    font-size: 1.5rem;
  }

  /* ===== FAQ ===== */
  .faq-header h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

