/* === NAV DROPDOWNS === */
.nav-dropdown { position: relative; display: inline-block; }
.nav-drop-btn {
  background: none; border: none; color: #94a3b8; font-size: 14px;
  font-weight: 500; cursor: pointer; padding: 8px 4px; font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.nav-drop-btn:hover { color: #fff; }
.nav-chevron { font-size: 10px; margin-left: 2px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-drop-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #111827; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 8px 0; min-width: 180px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5); z-index: 100;
}
.nav-dropdown:hover .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block; padding: 10px 20px; font-size: 14px; color: #94a3b8;
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.nav-drop-menu a:hover { color: #fff; background: rgba(34,211,238,0.08); }

/* === FUNNEL SECTIONS === */
.funnel-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-label-f {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #22d3ee;
  margin-bottom: 12px;
  text-align: center;
}
.section-title-f {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-sub-f {
  font-size: 16px;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 48px;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.proof-label {
  text-align: center;
  font-size: 13px;
  color: #64748b;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 15px;
  font-weight: 600;
}
.proof-icon { font-size: 20px; }
.proof-tag {
  font-size: 10px;
  background: rgba(34,211,238,0.1);
  color: #22d3ee;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.3);
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #22d3ee, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

/* INDUSTRIES */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.industry-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.04);
}
.ind-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.industry-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.industry-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.feat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.2);
}
.feat-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.feat-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: rgba(39,174,96,0.5);
  background: linear-gradient(145deg, rgba(39,174,96,0.08), rgba(46,204,113,0.03));
  transform: scale(1.04);
  box-shadow: 0 12px 48px rgba(39,174,96,0.15);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #22d3ee;
  margin-bottom: 4px;
}
.price-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
}
.price-amount {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1;
}
.price-amount .currency { font-size: 24px; vertical-align: super; margin-right: 2px; }
.price-amount .period { font-size: 14px; font-weight: 500; color: #64748b; }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.price-features li {
  font-size: 14px;
  color: #cbd5e1;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features .ck {
  color: #2ecc71;
  font-weight: 700;
  font-size: 14px;
}
.price-cta {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: all 0.3s;
}
.price-cta:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.price-cta.primary {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-color: transparent;
}
.price-cta.primary:hover {
  box-shadow: 0 4px 20px rgba(39,174,96,0.4);
}

/* TESTIMONIAL */
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
}
.testimonial-quote {
  font-size: 20px;
  color: #e2e8f0;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.testimonial-role {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}
.faq-q:hover { color: #22d3ee; }
.faq-arrow {
  font-size: 12px;
  color: #64748b;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.7;
}

/* FINAL CTA */
.cta-block {
  text-align: center;
  padding: 64px 24px;
  background: linear-gradient(145deg, rgba(34,211,238,0.06), rgba(8,145,178,0.03));
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: 24px;
}
.cta-block h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-block p {
  font-size: 16px;
  color: #94a3b8;
  margin-bottom: 32px;
}
.btn.large {
  padding: 16px 40px;
  font-size: 17px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-grid, .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-4px); }
  .section-title-f { font-size: 26px; }
  .proof-logos { gap: 20px; }
}
@media (max-width: 600px) {
  .industry-grid { grid-template-columns: 1fr; }
  .funnel-section { padding: 48px 16px; }
  .proof-logos { flex-direction: column; gap: 12px; }
}
