:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface2: #f2f5fb;
  --accent: #2563eb;
  --accent2: #0ea5e9;
  --accent3: #f97316;
  --text: #0f172a;
  --muted: #475569;
  --border: #dbe4f0;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, #fbfdff 0%, #f7f9fc 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.4px;
}

.logo span span { color: var(--text); }

.logo-mark {
  width: 160px;
  height: 40px;
  border-radius: 0;
  object-fit: contain;
  border: none;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover { color: var(--accent); }

.nav-links { display: flex; gap: 28px; align-items: center; }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 16px;
  cursor: pointer;
}

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 700 !important;
  font-size: 13px !important;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef4ff;
  border: 1px solid #d9e7ff;
  padding: 7px 16px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

h1 .line2 {
  display: block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
}

.btn-primary:hover { transform: translateY(-1px); opacity: 0.92; }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
}

.orb1 {
  width: 360px; height: 360px;
  background: rgba(37, 99, 235, 0.16);
  top: 30px; left: -100px;
}

.orb2 {
  width: 320px; height: 320px;
  background: rgba(14, 165, 233, 0.16);
  bottom: 70px; right: -80px;
}

.stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 24px 70px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 26px 34px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  min-width: 180px;
  box-shadow: var(--shadow);
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 42px;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tool-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.tool-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
}

.icon-green { background: #e8f1ff; color: #1d4ed8; }
.icon-blue { background: #e7f9ff; color: #0284c7; }
.icon-orange { background: #fff2e9; color: #ea580c; }

.tool-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tool-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.demo-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.demo-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  outline: none;
}

.demo-input:focus { border-color: var(--accent); }
.demo-input::placeholder { color: #94a3b8; }

.demo-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}

.demo-btn:hover { opacity: 0.92; }
.demo-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.demo-result {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  min-height: 80px;
  max-height: 300px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.6;
  display: none;
}

.demo-result.active { display: block; }
.demo-result.error { color: #dc2626; }

.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff5ec;
  border: 1px solid #ffd8bd;
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 11px;
  color: #c2410c;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}

.product-card:hover {
  border-color: #bfdbfe;
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.product-info { padding: 10px; }

.product-name {
  font-size: 11px;
  color: var(--text);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

.product-mrp {
  font-size: 10px;
  color: var(--muted);
  text-decoration: line-through;
}

.product-discount {
  font-size: 10px;
  color: #ea580c;
  font-weight: 600;
}

.email-result-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  margin-top: 14px;
}

.email-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.email-result-row:last-child { border-bottom: none; }

.email-result-key {
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.email-result-val {
  color: var(--text);
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

.valid-badge {
  background: #dff7e9;
  color: #047857;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
}

.invalid-badge {
  background: #ffe8e8;
  color: #b91c1c;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 11px;
}

.loading {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  padding: 12px 0;
}

.loading.active { display: flex; }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid #dbe4f0;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.rate-info {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.service-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
}

.service-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card.featured {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.price-card.featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.price-plan {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.price-period {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
}

.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.price-features li:last-child { border-bottom: none; }

.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.price-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: 'Manrope', sans-serif;
}

.price-btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border) !important;
}

.price-btn-outline:hover { border-color: var(--accent) !important; color: var(--accent); }

.price-btn-filled {
  background: var(--accent);
  color: #fff;
}

.price-btn-filled:hover { opacity: 0.92; }

.contact-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  margin: 0 24px 80px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}

.contact-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 36px;
}

.contact-options {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.wa-btn {
  background: #25d366;
  color: #fff;
}

.wa-btn:hover { opacity: 0.92; }

.email-btn {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}

.email-btn:hover { border-color: var(--accent); color: var(--accent); }

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-mark {
  width: 160px;
  height: 40px;
}

.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}

.tab {
  flex: 1;
  padding: 9px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}

.tab.active {
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--border);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.full-tool { grid-column: 1 / -1; }

.result-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.result-count span { color: var(--accent); }

.protection-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff6eb;
  border: 1px solid #ffd7b8;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: #9a3412;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
}

.protection-note span { color: #c2410c; font-weight: 600; }

.meeting-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 120px 24px 60px;
}

.meeting-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.meeting-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.meeting-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.meeting-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.meeting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.meeting-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.meeting-field span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

.meeting-field input,
.meeting-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  outline: none;
}

.meeting-field input:focus,
.meeting-field textarea:focus {
  border-color: var(--accent);
}

.meeting-field textarea {
  resize: vertical;
  min-height: 120px;
}

.meeting-full { grid-column: 1 / -1; }

.meeting-submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.meeting-error {
  min-height: 18px;
  color: #dc2626;
  font-size: 13px;
}

.meeting-success {
  display: none;
  background: #ebfff3;
  border: 1px solid #b8f3d0;
  color: #047857;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.meeting-success.active { display: block; }

@media (max-width: 768px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body::before,
  .orb {
    display: none;
  }

  nav {
    padding: 12px;
    justify-content: center;
  }

  .menu-toggle,
  .nav-links {
    display: none;
  }

  .logo {
    max-width: 100%;
  }

  .logo-mark {
    width: 108px;
    height: 24px;
    max-width: 100%;
  }

  .hero {
    padding: 92px 12px 48px;
    min-height: auto;
  }

  h1 { font-size: 33px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary,
  .demo-btn,
  .demo-input,
  .contact-btn {
    width: 100%;
    justify-content: center;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px 12px 44px;
    gap: 10px;
  }

  .stat {
    min-width: 0;
    padding: 16px 10px;
  }

  section { padding: 48px 12px; }
  .section-title { font-size: 27px; }

  .tools-grid,
  .services-grid,
  .pricing-grid,
  .meeting-grid {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .service-card,
  .price-card,
  .meeting-wrap,
  .contact-section {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .tool-card { padding: 18px 12px; }
  .service-card,
  .price-card { padding: 18px 12px; }

  .demo-input-row {
    flex-direction: column;
    gap: 8px;
  }

  .tabs {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .tab {
    min-width: 0;
    font-size: 12px;
    padding: 8px 6px;
    white-space: normal;
    line-height: 1.2;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-section {
    padding: 32px 14px;
    margin: 0 8px 52px;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .email-result-row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .email-result-val {
    text-align: left;
    max-width: 100%;
    word-break: break-word;
  }

  .meeting-page { padding: 88px 8px 32px; }

  .meeting-wrap {
    padding: 18px 10px;
    border-radius: 14px;
  }

  .meeting-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .logo-mark {
    width: 140px;
    height: 35px;
  }

  nav,
  .hero,
  section,
  .stats {
    padding-left: 10px;
    padding-right: 10px;
  }
}
