/* Quant Neeti Landing Page Stylesheet */
:root {
  --bg-navy: #0a101b;
  --bg-navy-dark: #05080e;
  --bg-card: #111827;
  --bg-card-hover: #172235;
  --text-white: #ffffff;
  --text-muted: #9aa8c2;
  --sky-blue: #24b7ca;
  --sky-blue-hover: #1d9ab1;
  --green: #39b976;
  --green-hover: #2e9e62;
  --border-color: #172235;
  --border-hover: #24b7ca;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-navy-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Gradients and Background Mesh */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 10% 20%, rgba(36, 183, 202, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(57, 185, 118, 0.08) 0%, transparent 40%),
              var(--bg-navy-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(5, 8, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-link {
  color: var(--text-white);
  background: transparent;
}

.btn-link:hover {
  color: var(--sky-blue);
}

.btn-primary {
  background-color: var(--sky-blue);
  color: var(--bg-navy-dark);
}

.btn-primary:hover {
  background-color: var(--sky-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(36, 183, 202, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--sky-blue);
  background-color: rgba(36, 183, 202, 0.05);
}

.btn-green {
  background-color: var(--green);
  color: var(--bg-navy-dark);
}

.btn-green:hover {
  background-color: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(57, 185, 118, 0.3);
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px 0;
  text-align: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(36, 183, 202, 0.1);
  color: var(--sky-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(36, 183, 202, 0.2);
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  max-width: 900px;
  margin: 0 auto 24px auto;
}

.hero h1 span.gradient-text {
  background: linear-gradient(135deg, var(--sky-blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p.subtitle {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

/* Stats/Social Proof Bar */
.stats-bar {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(17, 24, 39, 0.4);
  padding: 40px 0;
  backdrop-filter: blur(8px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--sky-blue);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Features Bento Section */
.features {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head .eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 24px;
}

.bento-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(36, 183, 202, 0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.bento-card .icon {
  font-size: 28px;
  background-color: rgba(255, 255, 255, 0.03);
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  color: var(--sky-blue);
  z-index: 2;
}

.bento-card .info {
  z-index: 2;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Bento grid custom sizing */
.bento-card.double-col {
  grid-column: span 2;
}

.bento-card.double-row {
  grid-row: span 2;
  height: 100%;
}

.bento-card.accent-card {
  border-color: rgba(57, 185, 118, 0.2);
}

.bento-card.accent-card .icon {
  color: var(--green);
}

.bento-card.accent-card::before {
  background: radial-gradient(circle at 100% 0%, rgba(57, 185, 118, 0.05) 0%, transparent 70%);
}

/* Dashboard Mockup Section */
.mockup-section {
  padding: 60px 0 100px 0;
}

.mockup-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 12px 12px;
  border-bottom: 1px solid var(--border-color);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d6697b;
}

.mockup-dot:nth-child(2) { background-color: #f59e0b; }
.mockup-dot:nth-child(3) { background-color: #10b981; }

.mockup-content {
  background-color: #05080e;
  border-radius: 8px;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mockup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 8, 14, 0.95) 90%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  z-index: 5;
}

.mockup-svg-wrap {
  width: 90%;
  opacity: 0.85;
}

/* How It Works Steps */
.steps-section {
  padding: 100px 0;
  background-color: rgba(17, 24, 39, 0.2);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.step-card {
  text-align: center;
  position: relative;
}

.step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 36px;
  right: -24px;
  font-size: 24px;
  color: var(--border-color);
}

.step-number {
  width: 72px;
  height: 72px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--sky-blue);
  margin: 0 auto 24px auto;
  transition: all 0.3s ease;
}

.step-card:hover .step-number {
  border-color: var(--sky-blue);
  box-shadow: 0 0 20px rgba(36, 183, 202, 0.2);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
}

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

.price-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.price-card.popular {
  border-color: var(--sky-blue);
  transform: scale(1.03);
}

.price-card.popular::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--sky-blue);
  color: var(--bg-navy-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.price-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.price-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-amount {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
}

.price-amount span.period {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.price-features li {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: rgba(17, 24, 39, 0.1);
  border-top: 1px solid var(--border-color);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.6;
}

/* Call to Action Banner */
.cta-banner {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(36, 183, 202, 0.05) 0%, rgba(57, 185, 118, 0.05) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-banner h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

/* Footer */
footer {
  padding: 60px 0 40px 0;
  background-color: var(--bg-navy-dark);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .name {
  font-size: 20px;
  font-weight: 800;
}

.footer-brand .desc {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-white);
}

.social-link:hover {
  color: var(--text-white) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero h1 { font-size: 44px; }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .bento-card.double-col { grid-column: span 2; }
  .bento-card.double-row { grid-row: span 1; height: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step-card:not(:last-child)::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; max-width: 500px; margin: 40px auto 0 auto; }
  .price-card.popular { transform: none; }
  .price-card.popular::before { top: -12px; }
}

@media (max-width: 767px) {
  .navbar { height: 70px; }
  .nav-links { display: none; }
  .hero h1 { font-size: 36px; }
  .hero p.subtitle { font-size: 16px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card.double-col { grid-column: span 1; }
  .footer-content { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-direction: column; gap: 16px; align-items: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
