@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&display=swap');

:root {
  --lp-primary: #1d4ed8;
  --lp-primary-light: #38bdf8;
  --lp-accent: #06b6d4;
  --lp-orange: #f59e0b;
  --lp-bg: #fafbfc;
  --lp-surface: #ffffff;
  --lp-text: #0f172a;
  --lp-muted: #64748b;
  --lp-border: #e2e8f0;
  --lp-radius: 16px;
  --lp-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --lp-shadow-lg: 0 20px 50px rgba(79, 70, 229, 0.12);
}

* { box-sizing: border-box; }

body.sandoq-landing-pro {
  margin: 0;
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
}

.sandoq-landing-pro a { text-decoration: none; color: inherit; }

.sq-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
}

.sq-nav .sq-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.sq-nav .sq-container img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.sq-nav-links { display: flex; gap: 28px; align-items: center; }
.sq-nav-links a { color: var(--lp-muted); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.sq-nav-links a:hover { color: var(--lp-primary); }

.sq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.sq-btn-primary {
  background: linear-gradient(135deg, var(--lp-primary), #7c3aed);
  color: #fff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.sq-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--lp-shadow-lg);
  color: #fff;
}

.sq-btn-outline {
  background: transparent;
  border: 2px solid var(--lp-border);
  color: var(--lp-text);
}

.sq-btn-outline:hover { border-color: var(--lp-primary); color: var(--lp-primary); }

.sq-hero {
  padding: 80px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 992px) {
  .sq-hero { grid-template-columns: 1fr; text-align: center; }
  .sq-nav-links { display: none; }
}

.sq-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--lp-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.sq-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.sq-hero .sq-lead {
  color: var(--lp-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.sq-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 992px) { .sq-hero-actions { justify-content: center; } }

.sq-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
@media (max-width: 992px) { .sq-stats { justify-content: center; } }

.sq-stat strong { display: block; font-size: 1.75rem; color: var(--lp-primary); }
.sq-stat span { font-size: 0.9rem; color: var(--lp-muted); }

.sq-hero-visual {
  background: var(--lp-surface);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid var(--lp-border);
  overflow: hidden;
}

.sq-dashboard-mock {
  padding: 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.sq-mock-header {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.sq-mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.sq-mock-dot.r { background: #f87171; }
.sq-mock-dot.y { background: #fbbf24; }
.sq-mock-dot.g { background: #34d399; }

.sq-mock-inbox { display: flex; flex-direction: column; gap: 10px; }
.sq-mock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--lp-border);
}
.sq-mock-row.active { border-color: var(--lp-primary); background: rgba(79, 70, 229, 0.04); }
.sq-mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.sq-mock-row small { color: var(--lp-muted); display: block; }

.sq-section {
  padding: 72px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.sq-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.sq-section-sub {
  text-align: center;
  color: var(--lp-muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

.sq-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.sq-feature-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.sq-feature-card:hover {
  box-shadow: var(--lp-shadow);
  border-color: rgba(79, 70, 229, 0.3);
}

.sq-feature-card i {
  font-size: 2rem;
  color: var(--lp-primary);
  margin-bottom: 14px;
  display: block;
}

.sq-feature-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.sq-feature-card p { margin: 0; color: var(--lp-muted); font-size: 0.95rem; }

.sq-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .sq-steps { grid-template-columns: 1fr; } }

.sq-step {
  text-align: center;
  padding: 24px;
}
.sq-step-num {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lp-primary), #7c3aed);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.sq-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.sq-channel-pill {
  padding: 10px 20px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.sq-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.sq-price-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px;
  text-align: center;
  position: relative;
}

.sq-price-card.highlight {
  border-color: var(--lp-primary);
  box-shadow: var(--lp-shadow-lg);
  transform: scale(1.02);
}

.sq-price-card h3 { margin: 0 0 8px; }
.sq-price-card .sq-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lp-primary);
  margin: 16px 0;
}
.sq-price-card .sq-price small { font-size: 1rem; color: var(--lp-muted); font-weight: 600; }

.sq-faq-item {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.sq-faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.sq-faq-item summary::-webkit-details-marker { display: none; }
.sq-faq-item p { padding: 0 20px 18px; margin: 0; color: var(--lp-muted); }

.sq-cta-band {
  background: linear-gradient(135deg, var(--lp-primary), #7c3aed);
  color: #fff;
  border-radius: var(--lp-radius);
  padding: 48px 32px;
  text-align: center;
  margin: 48px 24px 72px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.sq-cta-band h2 { margin: 0 0 12px; font-size: 1.75rem; }
.sq-cta-band p { opacity: 0.9; margin-bottom: 24px; }
.sq-cta-band .sq-btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.sq-cta-band .sq-btn-outline:hover { background: rgba(255,255,255,0.15); }

.sq-footer {
  border-top: 1px solid var(--lp-border);
  padding: 32px 24px;
  text-align: center;
  color: var(--lp-muted);
  font-size: 0.9rem;
}

.sq-section-alt { background: #f1f5f9; border-radius: 0; max-width: none; padding-left: 0; padding-right: 0; }
.sq-section-alt .sq-inner { max-width: 1200px; margin: 0 auto; padding: 72px 24px; }
