/* ===== WBOT — Premium SaaS Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap');

/* ===== Design Tokens ===== */
:root {
  /* Core palette */
  --navy:        #0F172A;
  --navy-mid:    #1E293B;
  --navy-card:   #243044;
  --navy-border: #334155;

  /* WhatsApp green — the brand hero */
  --green:       #25D366;
  --green-dark:  #128C7E;
  --green-deep:  #075E54;
  --green-glow:  rgba(37, 211, 102, 0.12);
  --green-glow2: rgba(37, 211, 102, 0.06);

  /* Light sections */
  --cream:       #F8F6F1;
  --cream-card:  #FFFFFF;
  --cream-border:#E2DDD6;

  /* Typography */
  --text-primary: #F1F5F9;
  --text-muted:   #94A3B8;
  --text-faint:   #475569;
  --text-dark:    #0F172A;
  --text-dark-muted: #475569;

  --font: 'Rubik', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text-primary);
  direction: rtl;
  text-align: right;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== Utility ===== */
.light-section {
  background: var(--cream);
  color: var(--text-dark);
}
.light-section .section-title { color: var(--text-dark); }
.light-section .section-subtitle { color: var(--text-dark-muted); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--green);
  color: var(--navy);
}
.btn-primary:hover {
  background: #2edb6e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--navy-border);
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }

/* ===== Header ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(51,65,85,0.6);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 36px;
  height: 36px;
}
.logo span { color: var(--green); }

nav { display: flex; align-items: center; gap: 2px; }
nav a {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.18s;
}
nav a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
nav a.active { color: var(--green); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 28px 80px;
  background: var(--navy);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(37,211,102,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(18,140,126,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .highlight {
  color: var(--green);
  position: relative;
}
.hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-wrap {
  position: relative;
  width: 260px;
}
.phone-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(37,211,102,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.phone-mockup {
  width: 260px;
  background: #1a1a2e;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  padding: 18px 14px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  position: relative;
}
.phone-notch {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 14px;
}
.phone-screen {
  background: #111b21;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
}
.phone-header {
  background: var(--green-deep);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-avatar {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.phone-info .name { font-size: 0.82rem; font-weight: 600; }
.phone-info .status { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.phone-msgs { padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; }
.msg-out {
  align-self: flex-start;
  background: #1f2c34;
  padding: 8px 12px;
  border-radius: 10px 10px 10px 2px;
  font-size: 0.75rem;
  max-width: 88%;
  line-height: 1.4;
}
.msg-time { font-size: 0.6rem; color: rgba(255,255,255,0.4); margin-top: 3px; }
.msg-counter {
  margin: 8px 10px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
  text-align: center;
}

/* ===== Stats bar ===== */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 48px 28px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: var(--navy-mid);
  padding: 32px 28px;
  text-align: center;
}
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.9rem; color: var(--text-primary); font-weight: 500; }
.stat-sub { font-size: 0.75rem; color: var(--text-faint); margin-top: 4px; }

/* ===== Sections ===== */
section { padding: 88px 28px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 52px;
  text-align: center;
  line-height: 1.7;
}
.section-title { text-align: center; }

/* ===== Features grid ===== */
.features-section { background: var(--cream); }
.features-section .section-tag { color: var(--green-dark); }
.features-section .section-title { color: var(--text-dark); }
.features-section .section-subtitle { color: var(--text-dark-muted); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.25s ease;
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(37,211,102,0.1);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(37,211,102,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.875rem; color: var(--text-dark-muted); line-height: 1.6; }

/* ===== Services (new) ===== */
.services-section { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.service-card:hover { border-color: rgba(37,211,102,0.4); }
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover::after { opacity: 1; }

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.65; }

/* Lead form */
.lead-form { display: flex; flex-direction: column; gap: 11px; }
.lead-form input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  direction: rtl;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.lead-form input:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(37,211,102,0.04);
}
.lead-form input::placeholder { color: var(--text-faint); }
.lead-form .btn { margin-top: 4px; }

/* ===== Demo ===== */
.demo-section { background: var(--cream); }
.demo-section .section-title,
.demo-section h2 { color: var(--text-dark); }
.demo-section p { color: var(--text-dark-muted); }
.demo-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.demo-card {
  background: var(--cream-card);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 0 0 32px;
  text-align: right;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.demo-card h3 { color: var(--text-dark); font-weight: 700; font-size: 1.1rem; margin-bottom: 20px; }
.demo-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; }
.demo-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark-muted);
  font-size: 0.9rem;
}
.demo-list li::before { content: '✓'; color: var(--green-dark); font-weight: 700; flex-shrink: 0; }
.demo-note { font-size: 0.78rem; color: #999; }
.demo-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.demo-btns .btn-outline { border-color: #ccc; color: var(--text-dark); }
.demo-btns .btn-outline:hover { border-color: var(--green-dark); color: var(--green-dark); }

/* ===== FAQ ===== */
.faq-section { background: var(--navy-mid); }
.faq-grid { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.faq-item h3 { font-size: 0.975rem; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.faq-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ===== Contact ===== */
.contact-section { background: var(--navy); }
.contact-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== Footer ===== */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 52px 28px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand p { color: var(--text-faint); font-size: 0.875rem; margin-top: 12px; max-width: 260px; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.875rem; transition: color 0.18s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.18s;
}
.footer-contact-list a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-faint); font-size: 0.8rem; }

/* ===== WhatsApp Float Button ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.25s;
  white-space: nowrap;
  text-decoration: none;
}
.wa-float:hover {
  background: #22c55e;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.wa-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }

/* ===== Animations ===== */
.fade-in { opacity: 1; transform: translateY(0); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Pricing page extras ===== */
.pricing-hero {
  background: var(--navy);
  padding: 64px 28px 48px;
  text-align: center;
  border-bottom: 1px solid var(--navy-border);
}
.pricing-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.pricing-hero p { color: var(--text-muted); }

.pricing-section { background: var(--navy-mid); padding: 64px 28px 80px; }
.pricing-grid { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { border-color: rgba(37,211,102,0.35); }
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 32px rgba(37,211,102,0.12);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.pricing-name { color: var(--text-muted); font-size: 0.9rem; text-align: center; margin-bottom: 14px; }
.pricing-price { text-align: center; margin-bottom: 6px; }
.pricing-price .amount { font-size: 3.2rem; font-weight: 900; letter-spacing: -0.03em; }
.pricing-price .currency { font-size: 1.1rem; color: var(--text-muted); vertical-align: super; }
.pricing-period { text-align: center; color: var(--text-faint); font-size: 0.82rem; margin-bottom: 8px; }
.pricing-renew {
  text-align: center;
  color: var(--green);
  font-size: 0.8rem;
  background: rgba(37,211,102,0.08);
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 24px;
}
.pricing-divider { border: none; border-top: 1px solid var(--navy-border); margin-bottom: 22px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.875rem; color: var(--text-muted); }
.pricing-features li .check { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pricing-cta { width: 100%; }
.pricing-note { text-align: center; color: var(--text-faint); font-size: 0.75rem; margin-top: 10px; }

.guarantee {
  max-width: 860px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.guarantee-icon { font-size: 1.8rem; flex-shrink: 0; }
.guarantee-text h4 { font-size: 0.9rem; margin-bottom: 3px; }
.guarantee-text p { color: var(--text-muted); font-size: 0.82rem; }

/* Compare */
.compare-section { background: var(--navy); padding: 60px 28px; }
.compare-table { max-width: 760px; margin: 0 auto; border: 1px solid var(--navy-border); border-radius: var(--radius); overflow: hidden; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr 1fr; border-bottom: 1px solid var(--navy-border); }
.compare-row:last-child { border-bottom: none; }
.compare-cell { padding: 13px 18px; font-size: 0.875rem; text-align: center; }
.compare-cell:first-child { text-align: right; color: var(--text-muted); }
.compare-header { background: rgba(255,255,255,0.03); }
.compare-header .compare-cell { font-weight: 700; color: var(--text-primary); }
.compare-header .compare-cell:last-child { color: var(--green); }
.compare-row:nth-child(even) { background: rgba(255,255,255,0.015); }

/* ===== Privacy page ===== */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.privacy-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--green); margin: 32px 0 12px; }
.privacy-content p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; }
.privacy-content ul { color: var(--text-muted); font-size: 0.9rem; padding-right: 20px; margin-bottom: 14px; }
.privacy-content ul li { margin-bottom: 6px; }

/* Mobile-only pricing section */
.pricing-home-mobile {
  display: none;
  background: var(--cream);
  padding: 52px 28px 44px;
}
.pricing-home-mobile h2 { color: var(--text-dark); }
.pricing-home-mobile .section-tag { color: var(--green-dark); }
.pricing-home-mobile > p { color: var(--text-dark-muted); }
.pricing-home-mobile .pricing-card { background: var(--cream-card); border-color: var(--cream-border); }
.pricing-home-mobile .pricing-name { color: var(--text-dark-muted); font-size: 1.05rem; font-weight: 600; }
.pricing-home-mobile .pricing-price .amount { color: var(--text-dark); }
.pricing-home-mobile .pricing-period { color: var(--text-dark-muted); }
.pricing-home-mobile .pricing-divider { border-color: var(--cream-border); }

/* Reorder wrapper — flex on mobile to change section order */
.reorder-wrap { display: block; width: 100%; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    right: 0; left: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--navy-border);
    padding: 12px 16px;
    gap: 2px;
  }
  .menu-toggle { display: block; }
  header .btn { display: none; }
  .logo img { height: 40px !important; }
  .logo span { font-size: 1.1rem; }
  .hero { padding: 44px 20px 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { order: 2; }
  .phone-wrap { width: 180px !important; max-width: 180px !important; }
  .phone-mockup { width: 180px !important; padding: 10px 8px !important; border-radius: 28px !important; }
  .phone-mockup .phone-notch { width: 48px; height: 4px; margin-bottom: 8px; }
  .phone-mockup .phone-screen { min-height: 320px !important; border-radius: 14px !important; }
  .phone-mockup .phone-header { padding: 10px 12px; }
  .phone-mockup .phone-avatar { width: 28px; height: 28px; font-size: 0.75rem; }
  .phone-mockup .msg-out { font-size: 0.68rem; padding: 6px 9px; }
  .phone-mockup .phone-msgs div:nth-child(3) { display: none; }
  .phone-mockup .msg-counter { font-size: 0.62rem; padding: 6px 10px; margin: 4px 6px; }
  .pricing-home-mobile { display: block; }
  .reorder-wrap { display: flex; flex-direction: column; }
  .reorder-wrap .demo-section { order: 1; }
  .reorder-wrap .services-section { order: 2; }
  .demo-section { background: var(--navy) !important; }
  .demo-section h2 { color: var(--text-primary) !important; }
  .demo-section p { color: var(--text-muted) !important; }
  .demo-section li { color: var(--text-muted) !important; }
  .demo-card { background: var(--navy-card) !important; border-color: var(--navy-border) !important; }
  .demo-card h3 { color: var(--text-primary) !important; }
  .demo-list li { color: var(--text-muted) !important; }
  .demo-btns .btn-outline { border-color: var(--navy-border) !important; color: var(--text-primary) !important; }
  .services-section { background: var(--cream) !important; }
  .services-section .section-tag { color: var(--green-dark) !important; }
  .services-section .section-title { color: var(--text-dark) !important; }
  .services-section .section-subtitle { color: var(--text-dark-muted) !important; }
  .services-section .service-card { background: var(--cream-card) !important; border-color: var(--cream-border) !important; }
  .services-section .service-card h3 { color: var(--text-dark) !important; }
  .services-section .service-card > p { color: var(--text-dark-muted) !important; }
  .services-section .lead-form input { background: #fff !important; border-color: var(--cream-border) !important; color: var(--text-dark) !important; }
  .services-section .lead-form input::placeholder { color: #aaa !important; }
  .contact-section { background: var(--cream) !important; }
  .contact-section .section-tag { color: var(--green-dark) !important; }
  .contact-section .section-title { color: var(--text-dark) !important; }
  .contact-section .section-subtitle { color: var(--text-dark-muted) !important; }
  .contact-section .btn-outline { border-color: var(--cream-border) !important; color: var(--text-dark) !important; }
  .stats-inner { grid-template-columns: 1fr; gap: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .wa-float span { display: none; }
  .wa-float { padding: 13px; border-radius: 50%; }
  .wa-float svg { width: 26px; height: 26px; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  section { padding: 64px 18px; }
}
