/* ===================================================
   WATZZI - Global Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Cairo:wght@400;500;600;700;800;900&display=swap');

/* ─── CSS Variables ─────────────────────────────── */
:root {
  --green-50: #f0faf0;
  --green-100: #dcf5dc;
  --green-200: #b8eab8;
  --green-300: #83d583;
  --green-400: #4caf50;
  --green-500: #25d366;
  --green-600: #1faa52;
  --green-700: #128c3e;
  --green-800: #075e2f;
  --green-900: #003d1f;

  --dark-bg: #0a0f0a;
  --dark-card: #111811;
  --dark-900: #0d1a0d;
  --dark-800: #131f13;
  --dark-700: #1a2d1a;
  --dark-600: #1e361e;
  --dark-border: rgba(37, 211, 102, 0.15);

  --text-primary: #f0faf0;
  --text-secondary: #a8c5a8;
  --text-muted: #6b8f6b;

  --glow-green: 0 0 40px rgba(37, 211, 102, 0.3);
  --glow-soft: 0 0 20px rgba(37, 211, 102, 0.15);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.5);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);

  --font-base: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── Reset & Base ──────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

[lang="ar"] body {
  font-family: 'Cairo', var(--font-base);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── Typography ────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
}

.display-1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.display-2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
}

.body-lg {
  font-size: 1.15rem;
}

.body-sm {
  font-size: 0.875rem;
}

.label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gradient-text {
  background: linear-gradient(135deg, #25d366 0%, #83d583 50%, #25d366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Layout ────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #25d366, #1faa52);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2ce072, #25d366);
}

.btn-outline {
  border: 2px solid rgba(37, 211, 102, 0.5);
  color: var(--green-500);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: var(--green-500);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.875rem;
}

/* ─── Badge / Tags ──────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(37, 211, 102, 0.12);
  color: var(--green-500);
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ─── Cards ─────────────────────────────────────── */
.card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow: var(--glow-soft);
  transform: translateY(-4px);
}

.card-glow {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.02));
  border: 1px solid rgba(37, 211, 102, 0.25);
}

/* ─── Navigation ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 15, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #25d366, #83d583);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--green-500);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--green-500);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(10, 15, 10, 0.98);
  border-top: 1px solid var(--dark-border);
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 0;
  display: block;
}

.mobile-menu a:hover {
  color: var(--green-500);
}

/* ─── Hero Section ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37, 211, 102, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(37, 211, 102, 0.06) 0%, transparent 50%),
    var(--dark-bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 211, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 211, 102, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .badge {
  margin-bottom: 1.5rem;
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-500);
  display: block;
}

.hero-stat .lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bot-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-bot-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
  border-radius: 50%;
}

.hero-bot-img {
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(37, 211, 102, 0.2));
  animation: float 4s ease-in-out infinite;
}

.hero-card {
  position: absolute;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  backdrop-filter: blur(12px);
}

.hero-card-1 {
  top: 15%;
  left: -8%;
  animation: float 3.5s ease-in-out infinite 0.5s;
}

.hero-card-2 {
  bottom: 20%;
  right: -5%;
  animation: float 4s ease-in-out infinite 1s;
}

.hero-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.hero-card-title {
  font-weight: 700;
  color: var(--green-500);
  font-size: 1.1rem;
  display: block;
}

.hero-card-sub {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ─── Section Header ─────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .badge {
  margin-bottom: 1rem;
  display: inline-flex;
}

.section-header .section-title {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

/* ─── Problem Section ────────────────────────────── */
.problem {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-900) 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.problem-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 80, 80, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.problem-card:hover {
  border-color: rgba(255, 80, 80, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 80, 80, 0.08);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.problem-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ─── Solution Section ───────────────────────────── */
.solution-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.solution-img-wrap {
  position: relative;
}

.solution-mockup {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--dark-border);
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.solution-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.solution-feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(37, 211, 102, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.solution-feat-body h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.solution-feat-body p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ─── Features Section ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #25d366, transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow: var(--glow-soft);
  transform: translateY(-5px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── How It Works ───────────────────────────────── */
.how-bg {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-900), var(--dark-bg));
}

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-wrap::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, #25d366, rgba(37, 211, 102, 0.2), #25d366);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #25d366, #1faa52);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
  position: relative;
}

.step-num::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.2);
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ─── Industries ─────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.industry-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.industry-card:hover {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: var(--glow-soft);
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), var(--dark-card));
}

.industry-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.industry-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.industry-card p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ─── Testimonials ───────────────────────────────── */
.testimonials-bg {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-900), var(--dark-bg));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c3e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(37, 211, 102, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: var(--dark-card);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--green-500);
}

.faq-arrow {
  font-size: 0.85rem;
  transition: transform var(--transition);
  color: var(--green-500);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: var(--dark-card);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

/* ─── CTA Section ────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(37, 211, 102, 0.12) 0%, transparent 70%),
    var(--dark-900);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0;
}

.cta-inner .section-title {
  margin-bottom: 1.25rem;
}

.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 530px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
  background: var(--dark-900);
  border-top: 1px solid var(--dark-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--text-muted);
}

.social-link:hover {
  border-color: var(--green-500);
  color: var(--green-500);
  box-shadow: var(--glow-soft);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--green-500);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ─── Floating WhatsApp Button ─────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: botPulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6);
}

/* ─── Pricing ────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateY(-5px);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.03));
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.15);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #25d366, #1faa52);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.pricing-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-500);
}

.price-currency {
  font-size: 1.3rem;
  color: var(--green-500);
  font-weight: 700;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--green-500);
}

/* ─── Form ────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  color: var(--text-primary);
  font-family: var(--font-base);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
  background: rgba(37, 211, 102, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select option {
  background: var(--dark-card);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ─── Page Hero (inner pages) ─────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 211, 102, 0.1) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .section-title {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Integrations ────────────────────────────────── */
.integrations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.integration-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.integration-pill:hover {
  border-color: rgba(37, 211, 102, 0.4);
  color: var(--green-500);
}

.integration-icon {
  font-size: 1.1rem;
}

/* ─── Stats Bar ─────────────────────────────────────── */
.stats-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 2.5rem 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-500);
  display: block;
}

.stat-item .stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

/* ─── Animations ─────────────────────────────────── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

@keyframes botPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-in {
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Scrollbar ─────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(37, 211, 102, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(37, 211, 102, 0.5);
}

/* ─── Utility ────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-green {
  color: var(--green-500);
}

.text-muted {
  color: var(--text-muted);
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.w-full {
  width: 100%;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #25d366, transparent);
  border-radius: 3px;
  margin: 1rem auto;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .solution-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .steps-wrap {
    grid-template-columns: 1fr;
  }

  .steps-wrap::before {
    display: none;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-card-1,
  .hero-card-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ─────────────────────────────────────────────────
   NEW HERO COMPONENTS
───────────────────────────────────────────────── */

/* Hero trust line */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.trust-item {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-sep {
  color: var(--dark-border);
  font-size: 0.8rem;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--dark-border);
}

/* Hero orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 211, 102, 0.08);
  top: -100px;
  right: -100px;
  animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(37, 211, 102, 0.05);
  bottom: 50px;
  left: -50px;
  animation: orbFloat 14s ease-in-out infinite reverse;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* Hero badge */
.hero-badge {
  margin-bottom: 1.5rem;
}

/* ─── CRM Dashboard Preview ──────────────────── */
.hero-phone-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.18) 0%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
}

.crm-preview {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(37, 211, 102, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(37, 211, 102, 0.06);
  animation: float 5s ease-in-out infinite;
}

.crm-header {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.12), rgba(18, 140, 62, 0.06));
  border-bottom: 1px solid var(--dark-border);
  padding: 1rem 1.25rem;
}

.crm-logo-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.crm-dot-green {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}

.crm-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-primary);
  flex: 1;
}

.crm-live-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 99px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-500);
}

.crm-stats-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.crm-mini-stat {
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
}

.crm-mini-num {
  display: block;
  font-weight: 800;
  color: var(--green-500);
  font-size: 0.95rem;
}

.crm-mini-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.crm-conv-list {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.crm-conv {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--dark-border);
  transition: var(--transition);
  cursor: default;
}

.crm-conv:hover {
  border-color: rgba(37, 211, 102, 0.2);
  background: rgba(37, 211, 102, 0.03);
}

.crm-conv-new {
  background: rgba(37, 211, 102, 0.06);
  border-color: rgba(37, 211, 102, 0.2);
}

.crm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.crm-conv-body {
  flex: 1;
  min-width: 0;
}

.crm-conv-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.15rem;
}

.crm-conv-name {
  font-weight: 600;
  font-size: 0.82rem;
}

.crm-conv-time {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.crm-conv-msg {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crm-badge-new {
  background: #25d366;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  white-space: nowrap;
}

.crm-badge-done {
  background: rgba(37, 211, 102, 0.15);
  color: var(--green-500);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  white-space: nowrap;
}

.crm-auto-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: linear-gradient(90deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.04));
  border-top: 1px solid var(--dark-border);
  font-size: 0.78rem;
  color: var(--green-500);
  font-weight: 600;
}

.crm-auto-count {
  color: var(--text-muted);
  font-weight: 400;
}

/* ─── Trust Bar ──────────────────────────────── */
.trust-bar {
  background: var(--dark-900);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 1.5rem 0;
  overflow: hidden;
}

.trust-bar-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-logo-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  opacity: 0.7;
  transition: var(--transition);
}

.trust-logo-item:hover {
  opacity: 1;
  color: var(--text-secondary);
}

/* ─── Problem Section Updates ────────────────── */
.problem-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.problem-icon {
  font-size: 1.6rem;
  display: block;
  margin: 0;
}

.problem-card {
  position: relative;
  overflow: hidden;
}

.problem-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 80, 80, 0.4), transparent);
  opacity: 0;
  transition: var(--transition);
}

.problem-card:hover::after {
  opacity: 1;
}

/* ─── Solution Section ───────────────────────── */
.solution-section {
  background: linear-gradient(180deg, var(--dark-bg), var(--dark-900));
}

.solution-mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--dark-border);
}

.mock-conv {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--dark-border);
  transition: var(--transition);
}

.mock-conv-active {
  background: rgba(37, 211, 102, 0.06);
  border-color: rgba(37, 211, 102, 0.2);
}

.mock-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.mock-conv-info {
  flex: 1;
  min-width: 0;
}

.mock-badge-new {
  background: #25d366;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
}

.mock-stat-card {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
}

.mock-stat-num {
  font-weight: 800;
  color: #25d366;
  font-size: 1.2rem;
}

.mock-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ─── Features Section Upgrade ───────────────── */
.features-section {
  background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-bg) 100%);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.04));
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.25), rgba(37, 211, 102, 0.08));
  border-color: rgba(37, 211, 102, 0.4);
  transform: scale(1.05);
}

.feature-icon {
  font-size: 1.8rem;
  width: auto;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
  margin: 0;
}

.feature-link {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-border);
}

.feature-link a {
  color: var(--green-500);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.feature-link a:hover {
  letter-spacing: 0.02em;
}

/* ─── Steps Connector ────────────────────────── */
.steps-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step-card {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.step-connector {
  flex-shrink: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), rgba(37, 211, 102, 0.2));
  margin-top: 40px;
  position: relative;
}

.step-connector::after {
  content: '→';
  position: absolute;
  right: -4px;
  top: -10px;
  color: var(--green-500);
  font-size: 0.8rem;
}

.step-num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #25d366, #1faa52);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 0.75rem;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
  position: relative;
}

.step-num::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.2);
}

.step-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ─── Industry Cards upgrade ─────────────────── */
.industry-use-case {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--dark-border);
  padding-top: 0.6rem;
}

.industry-card {
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), transparent);
  opacity: 0;
  transition: var(--transition);
}

.industry-card:hover::before {
  opacity: 1;
}

/* ─── Integrations Section ───────────────────── */
.integrations-section {
  background: var(--dark-900);
}

/* ─── Testimonials Upgrade ───────────────────── */
.testimonial-quote {
  font-size: 3rem;
  color: var(--green-500);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
}

.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  color: var(--green-400);
  margin-bottom: 1.5rem;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.04), transparent);
  opacity: 0;
  transition: var(--transition);
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* ─── CTA Enhancement ────────────────────────── */
.cta-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cta-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--green-500);
  border-radius: 50%;
  opacity: 0.3;
  animation: particleDrift 8s ease-in-out infinite;
}

.cta-particles span:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

.cta-particles span:nth-child(2) {
  left: 30%;
  top: 70%;
  animation-delay: 1.5s;
}

.cta-particles span:nth-child(3) {
  left: 60%;
  top: 15%;
  animation-delay: 3s;
}

.cta-particles span:nth-child(4) {
  left: 80%;
  top: 60%;
  animation-delay: 4.5s;
}

.cta-particles span:nth-child(5) {
  left: 50%;
  top: 85%;
  animation-delay: 6s;
}

@keyframes particleDrift {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-40px) scale(1.5);
    opacity: 0.6;
  }
}

/* ─── Responsive for new elements ───────────── */
@media (max-width: 1024px) {
  .steps-wrap {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .hero-trust {
    justify-content: center;
  }

  .hero-stat-divider {
    display: none;
  }

  .crm-preview {
    max-width: 380px;
    margin: 0 auto;
  }

  .trust-logos {
    gap: 1.25rem;
  }

  .cta-trust {
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  .testimonial-result {
    font-size: 0.77rem;
  }
}

@media (max-width: 480px) {
  .crm-stats-mini {
    display: none;
  }

  .hero-phone-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
}